我在我的清单中注册了一个广播接收器:
<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标签,但没有任何作用。
答案 0 :(得分:0)
添加RECEIVE_SMS
和READ_SMS
的权限。
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.RECEIVE_SMS},
MY_PERMISSIONS_REQUEST_SMS_RECEIVE);
这应该有效。
答案 1 :(得分:-1)
从android 4.4开始,你必须实现一些功能,将你的短信应用程序更改为默认的短信应用程序和getSms / MMS。只有默认应用才会收到短信&mms的通知。
这个答案可以帮助您做到这一点:link