gpt4 book ai didi

android - 如何从Android应用程序发送和接收短信?

转载 作者:行者123 更新时间:2023-12-02 04:31:59 28 4
gpt4 key购买 nike

关闭。这个问题需要更多focused .它目前不接受答案。












想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post .

7年前关闭。




Improve this question




我想在我的应用程序中添加短信发送功能,还希望用户可以直接从应用程序的联系人列表中选择联系人。有没有办法将联系人列表与我的应用程序集成。

谢谢

最佳答案

这是一个教程,逐步展示如何从 Android 应用程序发送短信。
http://mobiforge.com/developing/story/sms-messaging-android
希望 Androider 和我的回答能完成您的回答!
更新:由于上面的链接现已失效:
免责声明:
我没有写原始文章。我只是在这里复制它。文章的原作者是weimenglee。我在这里复制这篇文章是因为在几年前发布了原始链接后,该链接现在已经失效。
如何发送短信
首先,首先启动 Eclipse 并创建一个新的 Android 项目。为项目命名,如图 1 所示。
Figure 1
Android 使用基于权限的策略,其中需要在 AndroidManifest.xml 中指定应用程序所需的所有权限。文件。通过这样做,在安装应用程序时,用户将清楚应用程序需要哪些特定的访问权限。例如,由于发送 SMS 消息可能会在用户端产生额外费用,在 AndroidManifest.xml 中指明了 SMS 权限。文件将让用户决定是否允许安装应用程序。
AndroidManifest.xml文件,添加两个权限-SEND_SMSRECEIVE_SMS :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.learn2develop.SMSMessaging"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SMS"
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>
<uses-permission android:name="android.permission.SEND_SMS">
</uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS">
</uses-permission>
</manifest>
main.xml文件位于 res/layout文件夹,添加以下代码,以便用户可以输入电话号码以及要发送的消息:
<?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="Enter the phone number of recipient"
/>
<EditText
android:id="@+id/txtPhoneNo"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Message"
/>
<EditText
android:id="@+id/txtMessage"
android:layout_width="fill_parent"
android:layout_height="150px"
android:gravity="top"
/>
<Button
android:id="@+id/btnSendSMS"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Send SMS"
/>
</LinearLayout>
上面的代码创建了如图 2 所示的 UI。
enter image description here
接下来,在 SMS Activity 中,我们连接 Button View ,以便当用户单击它时,我们将检查是否输入了收件人的电话号码和消息,然后再使用 sendSMS() 发送消息。函数,我们将很快定义:
package net.learn2develop.SMSMessaging;

import android.app.Activity;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.gsm.SmsManager;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class SMS extends Activity
{
Button btnSendSMS;
EditText txtPhoneNo;
EditText txtMessage;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

btnSendSMS = (Button) findViewById(R.id.btnSendSMS);
txtPhoneNo = (EditText) findViewById(R.id.txtPhoneNo);
txtMessage = (EditText) findViewById(R.id.txtMessage);

btnSendSMS.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
String phoneNo = txtPhoneNo.getText().toString();
String message = txtMessage.getText().toString();
if (phoneNo.length()>0 && message.length()>0)
sendSMS(phoneNo, message);
else
Toast.makeText(getBaseContext(),
"Please enter both phone number and message.",
Toast.LENGTH_SHORT).show();
}
});
}
}
sendSMS()函数定义如下:
public class SMS extends Activity 
{
//...

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
//...
}

//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
PendingIntent pi = PendingIntent.getActivity(this, 0,
new Intent(this, SMS.class), 0);
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, pi, null);
}
}
要发送 SMS 消息,请使用 SmsManager类(class)。与其他类不同,您不直接实例化此类;相反,您将拨打 getDefault()获取 SmsManager 的静态方法目的。 sendTextMessage()方法发送带有 PendingIntent 的 SMS 消息. PendingIntent object 用于标识稍后要调用的目标。例如,发送消息后,您可以使用 PendingIntent对象来显示另一个 Activity 。在这种情况下, PendingIntent对象 (pi) 只是指向同一个 Activity ( SMS.java ),因此当发送 SMS 时,什么也不会发生。
如果您需要监控短信发送过程的状态,实际上可以使用两个 PendingIntent 对象和两个 BroadcastReceiver 一起使用。对象,像这样:
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
String SENT = "SMS_SENT";
String DELIVERED = "SMS_DELIVERED";

PendingIntent sentPI = PendingIntent.getBroadcast(this, 0,
new Intent(SENT), 0);

PendingIntent deliveredPI = PendingIntent.getBroadcast(this, 0,
new Intent(DELIVERED), 0);

//---when the SMS has been sent---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS sent",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(getBaseContext(), "Generic failure",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(getBaseContext(), "No service",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(getBaseContext(), "Null PDU",
Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(getBaseContext(), "Radio off",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(SENT));

//---when the SMS has been delivered---
registerReceiver(new BroadcastReceiver(){
@Override
public void onReceive(Context arg0, Intent arg1) {
switch (getResultCode())
{
case Activity.RESULT_OK:
Toast.makeText(getBaseContext(), "SMS delivered",
Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(getBaseContext(), "SMS not delivered",
Toast.LENGTH_SHORT).show();
break;
}
}
}, new IntentFilter(DELIVERED));

SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
}
上面的代码使用了 PendingIntent对象(sentPI)来监控发送过程。发送 SMS 消息时,将触发第一个 BroadcastReceiver 的 onReceive 事件。您可以在此处检查发送过程的状态。第二个 PendingIntent 对象(deliveredPI)监控交付过程。第二个 BroadcastReceiver 的 onReceive成功发送 SMS 时将触发事件。
您现在可以通过在 Eclipse 中按 F11 来测试应用程序。要将 SMS 消息从一个模拟器实例发送到另一个实例,只需通过转到 SDK 的工具文件夹并运行 Emulator.exe 来启动 Android 模拟器的另一个实例。 .
enter image description here
图 3 显示了如何从一个模拟器向另一个模拟器发送 SMS 消息;只需使用目标模拟器的端口号(显示在窗口的左上角)作为其电话号码。短信发送成功后,会显示“短信已发送”信息。成功投递后,会显示“短信投递”信息。需要注意的是,使用模拟器进行测试,当一条短信发送成功时,不会出现“短信已发送”信息;这仅适用于真实设备。
图 4 显示了在接收者模拟器上收到的 SMS 消息。该消息首先出现在通知栏(屏幕顶部)中。向下拖动通知栏会显示收到的消息。要查看整个消息,请单击该消息。
enter image description here
如果您不想经历自己发送 SMS 消息的所有麻烦,可以使用 Intent 对象来帮助您发送 SMS 消息。以下代码显示了如何调用内置 SMS 应用程序来帮助您发送 SMS 消息:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "Content of the SMS goes here...");
sendIntent.setType("vnd.android-dir/mms-sms");
startActivity(sendIntent);
图 5 显示了为发送 SMS 消息而调用的内置 SMS 应用程序。
enter image description here
接收短信
除了以编程方式发送 SMS 消息外,您还可以使用 BroadcastReceiver 拦截传入的 SMS 消息。目的。
要了解如何从您的 Android 应用程序中接收 SMS 消息,请参阅 AndroidManifest.xml文件添加元素,以便传入的 SMS 消息可以被 SmsReceiver 拦截。类(class):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.learn2develop.SMSMessaging"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SMS"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<receiver android:name=".SmsReceiver">
<intent-filter>
<action android:name=
"android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>

</application>
<uses-permission android:name="android.permission.SEND_SMS">
</uses-permission>
<uses-permission android:name="android.permission.RECEIVE_SMS">
</uses-permission>
</manifest>
将一个新的类文件添加到您的项目中,并将其命名为 SmsReceiver.java(参见图 6)。
enter image description here
在 SmsReceiver 类中,扩展 BroadcastReceiver 类并覆盖 onReceive() 方法:
package net.learn2develop.SMSMessaging;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class SmsReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
}
}
当收到 SMS 消息时, onCreate()方法将被调用。 SMS 消息通过 onReceive() 包含并附加到 Intent 对象( Intent – Bundle 方法中的第二个参数)。目的。消息以 PDU 格式存储在对象数组中。要提取每条消息,请使用静态 createFromPdu()方法来自 SmsMessage类(class)。然后使用 Toast 显示 SMS 消息。类(class):
package net.learn2develop.SMSMessaging;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.gsm.SmsMessage;
import android.widget.Toast;

public class SmsReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
//---get the SMS message passed in---
Bundle bundle = intent.getExtras();
SmsMessage[] msgs = null;
String str = "";
if (bundle != null)
{
//---retrieve the SMS message received---
Object[] pdus = (Object[]) bundle.get("pdus");
msgs = new SmsMessage[pdus.length];
for (int i=0; i<msgs.length; i++){
msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);
str += "SMS from " + msgs[i].getOriginatingAddress();
str += " :";
str += msgs[i].getMessageBody().toString();
str += "n";
}
//---display the new SMS message---
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
}
}
}
就是这样!要测试应用程序,请在 Eclipse 中按 F11。将应用程序部署到每个 Android 模拟器。图 7 显示了 Eclipse,其中显示了当前正在运行的模拟器。您需要做的就是选择每个模拟器并将应用程序部署到每个模拟器上。
enter image description here
图 8 显示当您将 SMS 消息发送到另一个模拟器实例(端口号 5556)时,目标模拟器会收到该消息并通过 Toast 类显示该消息。
enter image description here

关于android - 如何从Android应用程序发送和接收短信?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6869961/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com