1

我的应用程序的目的是获取一条短信,然后在对话框中的屏幕上显示它。它还应该使消息不会出现在电话收件箱中。目前我已经编写了我认为应该工作的代码,但是当我向手机发送文本时,它们只会出现在收件箱中,而应用程序根本没有任何响应。

下面的代码:

    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>

4

3 回答 3

1

添加

<intent-filter android:priority="100">
<uses-permission android:name="android.permission.RECEIVE_SMS" />

到你的清单

于 2014-07-25T13:55:32.043 回答
0

在 Manifest 中,在应用的 Intent 过滤器中添加一行:

<intent-filter android:priority="100">

这意味着您的应用将首先决定如何处理您的消息。

另外,添加您的代码

this.abortBroadcast();

停止进一步转发。

编辑:尝试也添加

Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
Log.d("SMSReceiver",str);
于 2013-07-29T10:23:52.883 回答
0

BroadcastReceiver 是一项服务。这意味着它总是寻找服务并且它独立于应用程序活动。因此它不会在服务中显示依赖于应用程序的 Toast,但您可以使用此服务调用 Activity。

为了首先接收到您的应用程序,请在您的清单文件中指定优先级 100。使用
中止广播();代码中的方法

于 2013-07-30T07:21:06.973 回答