Android-SMSの送信
Androidでは、SmsManagerAPIまたはデバイスの組み込みSMSアプリケーションを使用してSMSを送信できます。このチュートリアルでは、SMSメッセージを送信するための2つの基本的な例を示します-
SmsManager API
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage("phoneNo", null, "sms message", null, null);
Built-in SMS application
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "default content");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
もちろん、両方が必要です SEND_SMS permission。
<uses-permission android:name="android.permission.SEND_SMS" />
上記のメソッドとは別に、SmsManagerクラスで使用できる他の重要な関数はほとんどありません。これらの方法を以下に示します-
シニア番号 | 方法と説明 |
---|---|
1 | ArrayList<String> divideMessage(String text) この方法では、メッセージテキストをいくつかのフラグメントに分割します。SMSメッセージの最大サイズを超えることはありません。 |
2 | static SmsManager getDefault() このメソッドは、SmsManagerのデフォルトインスタンスを取得するために使用されます |
3 | void sendDataMessage(String destinationAddress, String scAddress, short destinationPort, byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) この方法は、データベースのSMSを特定のアプリケーションポートに送信するために使用されます。 |
4 | void sendMultipartTextMessage(String destinationAddress, String scAddress, ArrayList<String> parts, ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) マルチパートテキストベースのSMSを送信します。 |
5 | void sendTextMessage(String destinationAddress, String scAddress, String text, PendingIntent sentIntent, PendingIntent deliveryIntent) テキストベースのSMSを送信します。 |
例
次の例は、SmsManagerオブジェクトを使用して指定された携帯電話番号にSMSを送信する実際の方法を示しています。
この例を試すには、最新のAndroid OSを搭載した実際のモバイルデバイスが必要です。そうでない場合は、エミュレーターで苦労する必要があり、動作しない可能性があります。
ステップ | 説明 |
---|---|
1 | Android Studio IDEを使用してAndroidアプリケーションを作成し、com.example.tutorialspointパッケージの下にtutorialspointという名前を付けます。 |
2 | src / MainActivity.javaファイルを変更し、SMSの送信を処理するために必要なコードを追加します。 |
3 | レイアウトXMLファイルを変更しますres / layout / activity_main.xml必要に応じて、GUIコンポーネントを追加します。携帯電話番号とSMSテキストを送信するためのシンプルなGUIと、SMSを送信するためのシンプルなボタンを追加しています。 |
4 | res / values /strings.xmlでデフォルトの文字列定数を定義する必要はありません。AndroidStudioがデフォルトの定数を処理します。 |
5 | 以下に示すようにAndroidManifest.xmlを変更します |
6 | アプリケーションを実行してAndroidエミュレーターを起動し、アプリケーションで行われた変更の結果を確認します。 |
変更されたメインアクティビティファイルの内容は次のとおりです src/com.example.tutorialspoint/MainActivity.java。
package com.example.tutorialspoint;
import android.Manifest;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.app.Activity;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import android.telephony.SmsManager;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
private static final int MY_PERMISSIONS_REQUEST_SEND_SMS =0 ;
Button sendBtn;
EditText txtphoneNo;
EditText txtMessage;
String phoneNo;
String message;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
sendBtn = (Button) findViewById(R.id.btnSendSMS);
txtphoneNo = (EditText) findViewById(R.id.editText);
txtMessage = (EditText) findViewById(R.id.editText2);
sendBtn.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
sendSMSMessage();
}
});
}
protected void sendSMSMessage() {
phoneNo = txtphoneNo.getText().toString();
message = txtMessage.getText().toString();
if (ContextCompat.checkSelfPermission(this,
Manifest.permission.SEND_SMS)
!= PackageManager.PERMISSION_GRANTED) {
if (ActivityCompat.shouldShowRequestPermissionRationale(this,
Manifest.permission.SEND_SMS)) {
} else {
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.SEND_SMS},
MY_PERMISSIONS_REQUEST_SEND_SMS);
}
}
}
@Override
public void onRequestPermissionsResult(int requestCode,String permissions[], int[] grantResults) {
switch (requestCode) {
case MY_PERMISSIONS_REQUEST_SEND_SMS: {
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(phoneNo, null, message, null, null);
Toast.makeText(getApplicationContext(), "SMS sent.",
Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getApplicationContext(),
"SMS faild, please try again.", Toast.LENGTH_LONG).show();
return;
}
}
}
}
}
以下の内容になります res/layout/activity_main.xml ファイル-
ここでabcはtutorialspointロゴについて示しています
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="MainActivity">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sending SMS Example"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="30dp" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials point "
android:textColor="#ff87ff09"
android:textSize="30dp"
android:layout_below="@+id/textView1"
android:layout_alignRight="@+id/imageButton"
android:layout_alignEnd="@+id/imageButton" />
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageButton"
android:src="@drawable/abc"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText"
android:hint="Enter Phone Number"
android:phoneNumber="true"
android:textColorHint="@color/abc_primary_text_material_dark"
android:layout_below="@+id/imageButton"
android:layout_centerHorizontal="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editText2"
android:layout_below="@+id/editText"
android:layout_alignLeft="@+id/editText"
android:layout_alignStart="@+id/editText"
android:textColorHint="@color/abc_primary_text_material_dark"
android:layout_alignRight="@+id/imageButton"
android:layout_alignEnd="@+id/imageButton"
android:hint="Enter SMS" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Send Sms"
android:id="@+id/btnSendSMS"
android:layout_below="@+id/editText2"
android:layout_centerHorizontal="true"
android:layout_marginTop="48dp" />
</RelativeLayout>
以下の内容になります res/values/strings.xml 2つの新しい定数を定義する-
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">tutorialspoint</string>
</resources>
以下はのデフォルトコンテンツです AndroidManifest.xml −
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tutorialspoint" >
<uses-permission android:name="android.permission.SEND_SMS" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.tutorialspoint.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
あなたを実行してみましょう tutorialspoint応用。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き
これで、希望の携帯電話番号とその番号で送信するテキストメッセージを入力できます。最後にをクリックしますSend SMSSMSを送信するボタン。GSM / CDMA接続が正常に機能してSMSを受信者に配信していることを確認してください。
いくつかのSMSをコンマで区切って取得し、プログラム内でそれらを配列文字列に解析する必要があります。最後に、ループを使用して、指定されたすべての番号にメッセージを送信できます。それはあなたがあなた自身のSMSクライアントを書くことができる方法です。次のセクションでは、既存のSMSクライアントを使用してSMSを送信する方法を示します。
ビルトインインテントを使用してSMSを送信する
Android Intentを使用して、Androidの組み込みSMS機能を呼び出すことでSMSを送信できます。次のセクションでは、SMSの送信に必要なIntentオブジェクトのさまざまな部分について説明します。
インテントオブジェクト-SMSを送信するアクション
使用します ACTION_VIEWAndroidデバイスにインストールされているSMSクライアントを起動するアクション。以下は、ACTION_VIEWアクションでインテントを作成するための簡単な構文です。
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
インテントオブジェクト-SMSを送信するためのデータ/タイプ
SMSを送信するには、指定する必要があります smsto: setData()メソッドとデータ型を使用するURIは、 vnd.android-dir/mms-sms 次のようにsetType()メソッドを使用します-
smsIntent.setData(Uri.parse("smsto:"));
smsIntent.setType("vnd.android-dir/mms-sms");
インテントオブジェクト-SMSを送信するための追加
Androidには、次のようにSMSを送信するための電話番号とテキストメッセージを追加するためのサポートが組み込まれています。
smsIntent.putExtra("address" , new String("0123456789;3393993300"));
smsIntent.putExtra("sms_body" , "Test SMS to Angilla");
ここで、addressとsms_bodyは大文字と小文字が区別されるため、小さい文字でのみ指定する必要があります。1つの文字列で複数の数値を指定できますが、セミコロン(;)で区切ります。
例
次の例は、Intentオブジェクトを使用してSMSクライアントを起動し、指定された受信者にSMSを送信する実際の方法を示しています。
この例を試すには、最新のAndroid OSを搭載した実際のモバイルデバイスが必要です。そうでない場合は、エミュレーターで苦労する必要があり、動作しない可能性があります。
ステップ | 説明 |
---|---|
1 | Android Studio IDEを使用してAndroidアプリケーションを作成し、com.example.tutorialspointパッケージの下にtutorialspointという名前を付けます。 |
2 | src / MainActivity.javaファイルを変更し、SMSの送信を処理するために必要なコードを追加します。 |
3 | レイアウトXMLファイルを変更しますres / layout / activity_main.xml必要に応じて、GUIコンポーネントを追加します。SMSクライアントを起動するための簡単なボタンを追加しています。 |
4 | デフォルトの定数を定義する必要はありません。AndroidStudioがデフォルトの定数を処理します。 |
5 | 以下に示すようにAndroidManifest.xmlを変更します |
6 | アプリケーションを実行してAndroidエミュレーターを起動し、アプリケーションで行われた変更の結果を確認します。 |
変更されたメインアクティビティファイルの内容は次のとおりです src/com.example.tutorialspoint/MainActivity.java。
package com.example.tutorialspoint;
import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button startBtn = (Button) findViewById(R.id.button);
startBtn.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
sendSMS();
}
});
}
protected void sendSMS() {
Log.i("Send SMS", "");
Intent smsIntent = new Intent(Intent.ACTION_VIEW);
smsIntent.setData(Uri.parse("smsto:"));
smsIntent.setType("vnd.android-dir/mms-sms");
smsIntent.putExtra("address" , new String ("01234"));
smsIntent.putExtra("sms_body" , "Test ");
try {
startActivity(smsIntent);
finish();
Log.i("Finished sending SMS...", "");
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(MainActivity.this,
"SMS faild, please try again later.", Toast.LENGTH_SHORT).show();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
以下の内容になります res/layout/activity_main.xml ファイル-
ここでabcはtutorialspointロゴについて示しています
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Drag and Drop Example"
android:id="@+id/textView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:textSize="30dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tutorials Point "
android:id="@+id/textView2"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:textSize="30dp"
android:textColor="#ff14be3c" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView"
android:src="@drawable/abc"
android:layout_marginTop="48dp"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Compose SMS"
android:id="@+id/button"
android:layout_below="@+id/imageView"
android:layout_alignRight="@+id/textView2"
android:layout_alignEnd="@+id/textView2"
android:layout_marginTop="54dp"
android:layout_alignLeft="@+id/imageView"
android:layout_alignStart="@+id/imageView" />
</RelativeLayout>
以下の内容になります res/values/strings.xml 2つの新しい定数を定義する-
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">tutorialspoint</string>
</resources>
以下はのデフォルトコンテンツです AndroidManifest.xml −
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tutorialspoint" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.tutorialspoint.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
あなたを実行してみましょう tutorialspoint応用。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き
オプションとしてモバイルデバイスを選択し、次の画面が表示されるモバイルデバイスを確認します-
今すぐ使用 Compose SMS 以下に示すAndroid組み込みSMSクライアントを起動するためのボタン-
指定されたデフォルトフィールドのいずれかを変更し、最後に[SMSの送信]ボタンを使用して、指定された受信者にSMSを送信できます。