作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个基本上有两个接收器的应用程序,一个接收 SMS 消息,一个接收 MMS 消息。当应用程序运行时,它运行完美,接收消息并且接收器都工作。不运行时,不会调用应用程序接收器。
这是 SMSReceiver 中的基本代码:
@Override
public void onReceive(Context context, Intent intent) {
this.context = context;
Log.i(TAG, "Intent received: " + intent.getAction());
Toast.makeText(context,"Message Received SMS",Toast.LENGTH_LONG).show();
}
list 权限全部正确。运行 Samsung S7 Edge Android 7.0 (Android 24)。它无论如何都应该接收文本,即使没有运行或在后台也是如此。
list :
<uses-permission android:name="android.permission.RECEIVE_MMS"/>
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
<receiver android:name="com.webnation.text2email.receivers.SMSBroadcastReceiver">
<intent-filter android:priority="2147483647">
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
<receiver android:name="com.webnation.text2email.receivers.MMSBroadcastReceiver" >
<intent-filter>
<action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" />
<data android:mimeType="application/vnd.wap.mms-message" />
</intent-filter>
</receiver>
最佳答案
您应该使用 Service
并将 intent
传递给它,而不是使用 onReceive()
处理它。此外,onReceive()
中的 context
参数不能用于执行 UI 操作,但它可用于启动 Activity
或 服务
。
下面是 onReceive()
的实现示例:
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Telephony.Sms.Intents.SMS_RECEIVED_ACTION)) {
Logger.LogI(TAG, "onReceive: received sms");
Intent serviceIntent = new Intent(intent);
serviceIntent.setClassName(context, SmsParserService.class.getCanonicalName());
context.startService(serviceIntent);
}
}
下面是SmsParserService
的实现示例:
/**
* Service for parsing the SMS and retrieving the message
*/
public class SmsParserService extends IntentService {
private static final String TAG = SmsParserService.class.getSimpleName();
public SmsParserService() {
this("SmsParserService");
}
/**
* Creates an IntentService. Invoked by your subclass's constructor.
*
* @param name Used to name the worker thread, important only for debugging.
*/
public SmsParserService(String name) {
super(name);
}
@Override
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
if (extras != null) {
Object[] objects = (Object[]) extras.get("pdus");
if (objects != null) {
for (Object object : objects) {
SmsMessage smsMessage;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) {
smsMessage = SmsMessage.createFromPdu((byte[]) object, extras.getString("format"));
} else {
smsMessage = SmsMessage.createFromPdu((byte[]) object);
}
String message = smsMessage.getMessageBody();
}
}
}
}
}
在 AndroidManifest.xml
中:
<receiver
android:name=".services.SmsReceiver"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BROADCAST_SMS">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
<service
android:name=".services.SmsParserService"
android:enabled="true"
android:exported="false">
</service>
另请记住,Service
是一个后台进程,这意味着某些 UI 元素(如 Dialog
和 Toast
)可能无法正常工作。在这种情况下,您应该使用 Activity
。
关于android - 除非应用程序正在运行,否则应用程序不会响应收到的短信。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46206341/
我是一名优秀的程序员,十分优秀!