我的应用程序的目的是抓取短信,然后在对话框中的屏幕上显示。它还应该使消息不会出现在手机收件箱中。目前我编码了我认为应该有效的内容,但是当我将文本发送到手机时,它们只是出现在收件箱中而根本没有来自应用程序的响应。
以下代码:
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";
Intent act = new Intent(context, MainActivity.class);
act.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
act.putExtra("message",str);
context.startActivity(act);
//abortBroadcast();
}
//---display the new SMS message---
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
}
}
清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cam.sms"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.WRITE_SMS"/>
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.RECIEVE_SMS"/>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.cam.sms.MainActivity"
android:label="@string/app_name"
android:alwaysRetainTaskState="True"
android:launchMode="singleInstance">"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SettingsScreen"
android:alwaysRetainTaskState="True"
android:launchMode="singleInstance">
</activity>
<receiver android:name=".SMSReceiver" android:exported="true">
<intent-filter android:priority="1000">
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
</application>
答案 0 :(得分:1)
添加
<intent-filter android:priority="100">
<uses-permission android:name="android.permission.RECEIVE_SMS" />
到你的清单
答案 1 :(得分:0)
在Manifest中,在你的应用程序的Intent过滤器中添加一行:
<intent-filter android:priority="100">
这意味着您的应用将首先决定如何处理您的消息。
另外,添加您的代码
this.abortBroadcast();
停止进一步转发。
编辑:尝试添加
Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
Log.d("SMSReceiver",str);
答案 2 :(得分:0)
BroadcastReceiver是一项服务。这意味着它总是寻找服务,它独立于应用程序活动。 因此它不会在服务中显示依赖于应用程序的Toast,但您可以使用此服务调用Activity。
并且首先在您的应用程序中接收清单文件中的优先级100。
使用
abortBroadcast();
代码中的方法