gpt4 book ai didi

Android 5.0.2 - 短信广播接收器 - 无法正常工作

转载 作者:搜寻专家 更新时间:2023-11-01 09:46:18 27 4
gpt4 key购买 nike

我在小米红米Note 3上测试,我需要的很简单:* 为传入的短信注册广播接收器* 一旦消息进来,就读它

看起来无论我尝试什么我都无法获得接收者注册。

根据谷歌文档,自 4.4 以来,任何应用程序都无法吞下该事件,每个应用程序监听都应该有机会获得该事件。

我已经尝试了所有类型的组合并用谷歌搜索了几乎所有内容。会不会是小米手机的问题?

这是我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.com.dimitar.test"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="21" />

<uses-permission
android:name="android.permission.RECEIVE_SMS"
android:protectionLevel="dangerous" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<receiver
android:name="com.example.com.dimitar.test.SmsListener"
android:enabled="true" >
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>

<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>

Java代码:

 package com.example.com.dimitar.test;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.widget.Toast;

public class SmsListener extends BroadcastReceiver{

private SharedPreferences preferences;

@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Bundle bundle = intent.getExtras();

Toast toast = Toast.makeText(context, "poruka: ", Toast.LENGTH_SHORT);
toast.show();

if(bundle != null){
//---get the SMS message passed in---
SmsMessage[] msgs = null;
String msg_from;
if (bundle != null){
//---retrieve the SMS message received---
try{
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]);
msg_from = msgs[i].getOriginatingAddress();
String msgBody = msgs[i].getMessageBody();


Toast toast1 = Toast.makeText(context, "poruka: " + msgBody, Toast.LENGTH_SHORT);
toast1.show();
}
}catch(Exception e){
// Log.d("Exception caught",e.getMessage());
}
}
}
}
}

最佳答案

看起来小米有一个几乎可以控制一切的安全应用程序。参见 another question and answer here

步骤:

  • 转到设置>已安装的应用
  • 找到该应用 > 点击它
  • 转到权限管理器并启用您需要的权限

或者:

  • 转到安全应用
  • 点击权限
  • 选择自动启动或权限并为您的应用启用您需要的任何内容

关于Android 5.0.2 - 短信广播接收器 - 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37927565/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com