2015-12-22 47 views
0

我已經閱讀了許多類似的問題,通常會導致有關優先級的答案。我認爲在我的情況下這不是真的原因是我的手機上的其他SMS閱讀器(如自動應用程序)只能收到廣播。我想發佈我目前正在做的事情的流程,並確保我在代碼中沒有做錯什麼會導致失敗。感謝您提供的任何提示!Android Sms廣播接收器儘管優先順序沒有觸發

注意:我試着用最高的整數優先級,優先級99,100,0,或根本沒有設置。他們都不工作。

AndroidManifest:

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.hennessylabs.appname" > 

    <uses-permission android:name="android.permission.CALL_PHONE" /> 
    <uses-permission android:name="android.permission.READ_CONTACTS" /> 
    <uses-permission android:name="android.permission.SEND_SMS" /> 
    <uses-permission android:name="android.permission.READ_SMS" /> 

    <application 
     android:allowBackup="true" 
     android:icon="@mipmap/ic_launcher" 
     android:label="@string/app_name" 
     android:supportsRtl="true" 
     android:theme="@style/AppTheme" > 
     <activity 
      android:name=".MainActivity" 
      android:label="@string/app_name" 
      android:theme="@style/AppTheme.NoActionBar" > 
      <intent-filter> 
       <action android:name="android.intent.action.MAIN" /> 

       <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
     </activity> 
     <receiver android:name="com.hennessylabs.drivercompanion.ProcessTextMessage" android:exported="true"> 
     <intent-filter android:priority="999" android:permission="android.permission.BROADCAST_SMS"> 
      <action android:name="android.provider.Telephony.SMS_RECEIVED"></action> 
     </intent-filter> 
    </receiver> 
    </application> 


</manifest> 

廣播接收器:

package com.hennessylabs.appname; 

import android.content.BroadcastReceiver; 
import android.content.Context; 
import android.content.Intent; 
import android.os.Bundle; 
import android.provider.Telephony; 
import android.telephony.SmsManager; 
import android.telephony.SmsMessage; 
import android.util.Log; 
import android.widget.Toast; 

/** 
* Created by kyleC on 11/15/2015. 
*/ 
public class ProcessTextMessage extends BroadcastReceiver { 
    private static final String SMS_RECEIVED = "android.provider.Telephony.SMS_RECEIVED"; 
    final SmsManager sms = SmsManager.getDefault(); 
    @Override 
    public void onReceive(Context context, Intent intent) { 
     Toast.makeText(context, "Entered onReceive", Toast.LENGTH_LONG).show(); 
     // Retrieves a map of extended data from the intent. 
     final Bundle bundle = intent.getExtras(); 

     try { 

      if (bundle != null) { 

       final Object[] pdusObj = (Object[]) bundle.get("pdus"); 

       for (int i = 0; i < pdusObj.length; i++) { 

        SmsMessage currentMessage = SmsMessage.createFromPdu((byte[]) pdusObj[i]); 
        String phoneNumber = currentMessage.getDisplayOriginatingAddress(); 

        String senderNum = phoneNumber; 
        String message = currentMessage.getDisplayMessageBody(); 

        Log.i("SmsReceiver", "senderNum: "+ senderNum + "; message: " + message); 


        // Show alert 
        int duration = Toast.LENGTH_LONG; 
        Toast toast = Toast.makeText(context, "senderNum: " + senderNum + ", message: " + message, duration); 
        toast.show(); 

       } // end for loop 
      } // bundle is null 

     } catch (Exception e) { 
      Log.e("SmsReceiver", "Exception smsReceiver" +e); 

     } 
    } 
} 

預期結果:

預期的結果是,當短信到達時,屏幕會先顯示它是一個吐司輸入了OnReceive方法。然後它會記錄和烘烤短信的內容。

實際結果:

與預期結果什麼也沒有發生。事實上,即使連接到USB並且處於調試模式,它也根本不會進入該類。所以也許我的清單設置錯了?

+0

可以嘗試9999這個數 –

+0

@AmitBasliyal同樣的結果 – Kyle

+0

'<接收器的android:NAME = 「SmsReceiver」> <意向過濾器的android:優先= 「99999」> <操作機器人:名字=」 android.provider.Telephony.SMS_RECEIVED」 /> '我的接收器是這個嘗試,這可能是幫你 –

回答

1

提供的一切是正確的,它看起來像你只是缺少RECEIVE_SMS許可。

<uses-permission android:name="android.permission.RECEIVE_SMS" /> 
+1

非常感謝!這是問題。 – Kyle

0

您從接收機的艙單申報缺少一些東西。您必須聲明exported=true,並且您必須要求BROADCAST_SMS權限。見工作示例:

<receiver android:name=".sms.IncomingSmsReceiver" android:exported="true"> 
     <intent-filter android:priority="999" android:permission="android.permission.BROADCAST_SMS"> 
      <action android:name="android.provider.Telephony.SMS_RECEIVED"></action> 
     </intent-filter> 
    </receiver> 
+0

感謝您發佈。我用我的新清單更新了我的問題。不幸的是,我得到了同樣的結果。 – Kyle

+0

這些東西都不是「必須的」。 –

0

那麼,什麼是您的應用程序上運行的設備的版本?

開始在Android 4.4系統中,只有默認的短信應用可以接收廣播SMS_DELIVER_ACTION。

的更多信息:http://android-developers.blogspot.sg/2013/10/getting-your-sms-apps-ready-for-kitkat.html

+0

4.4.2及以上是我的目標設備。儘管該文章特別與那些想要製作短信默認應用的人有關。我不。 – Kyle

+0

所以沒有可能的解決方案... – Chievent

+0

OP正在採取'SMS_RECEIVED'行動,所有的應用程序仍然可以得到,無論他們是默認的短信應用程序。那篇博文解釋得很好。 –