应用程序未运行时,SMS广播接收器无法正常工作

时间:2016-01-25 18:51:02

标签: android broadcastreceiver

我在我的清单中注册了一个广播接收器:

<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">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>

    <receiver android:name=".SMSReceiver" android:permission="android.permission.RECEIVE_SMS" android:exported="true">
        <intent-filter android:priority="9999">
            <action android:name="android.provider.telephony.SMS_RECEIVED" />
        </intent-filter>
    </receiver>
</application>

我的SMSReceiver类是这样的:

public class SMSReceiver extends BroadcastReceiver
{
    @Override
    public void onReceive(Context context, Intent intent)
    {
        if     (intent.getAction().equalsIgnoreCase("android.provider.Telephony.SMS_RECEIVED")) {
...

但是从不调用onReceive方法中的代码。我没试过接收器中的android:exported和android:permission标签,但没有任何作用。

2 个答案:

答案 0 :(得分:0)

添加RECEIVE_SMSREAD_SMS的权限。

ActivityCompat.requestPermissions(this, 
            new String[]{Manifest.permission.RECEIVE_SMS},
            MY_PERMISSIONS_REQUEST_SMS_RECEIVE);

这应该有效。

答案 1 :(得分:-1)

从android 4.4开始,你必须实现一些功能,将你的短信应用程序更改为默认的短信应用程序和getSms / MMS。只有默认应用才会收到短信&mms的通知。

这个答案可以帮助您做到这一点:link