안 드 로 이 드 문자 송신기
우선 레이아웃 파일 main. xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/mobileCode"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/content"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minLines="4"
android:id="@+id/messageContent"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button"
android:id="@+id/sendButton"
/>
</LinearLayout>
다음은 자원 파일 strings. xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello"> </string>
<string name="app_name"> </string>
<string name="button"> </string>
<string name="content"> </string>
<string name="status"> </string>
</resources>
마지막 으로 응답 을 처리 하 는 Activity 입 니 다.
package com.lamp.activity;
import java.util.List;
import android.app.Activity;
import android.os.Bundle;
import android.telephony.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class SMSActivity extends Activity {
public EditText mobileText = null;
public EditText contentText = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mobileText = (EditText)this.findViewById(R.id.mobileCode);
contentText = (EditText)this.findViewById(R.id.messageContent);
Button button = (Button)this.findViewById(R.id.sendButton);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
String mobile = mobileText.getText().toString();
String content = contentText.getText().toString();
SmsManager sms = SmsManager.getDefault();
// 40 ,
if(content.length() > 40){
List<String> contents = sms.divideMessage(content);
for(String text : contents){
sms.sendTextMessage(mobile, null, text, null, null);
}
}else{
sms.sendTextMessage(mobile, null, content, null, null);
}
//
Toast.makeText(SMSActivity.this, R.string.status, Toast.LENGTH_SHORT).show();
}
});
}
}
그리고 목록 파일 AndroidManifest. xml 에 문자 보 내기 권한 을 등록 해 야 합 니 다.
<!-- -->
<uses-permission android:name="android.permission.SEND_SMS" />
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.