我想创建一个响应接收SMS消息并显示对话框的应用程序。如何在清单中注册接收器而不在活动中定义?
我尝试将清单中的receiver / intent-filter标记保留在活动标记之外,但模拟器不会安装apk,因为没有启动活动。将BroadcastReceiver作为主要活动导致Logcat中出现“无法实例化活动”错误。
任何帮助?
谢谢, 晴天
接收者类
public class SMSReceiver extends BroadcastReceiver {
// onCreat is invoked when an sms message is received.
// Message is attached to Intent via Bundle, stored in an Object
// array in the PDU format.
public void onReceive(Context context, Intent intent) {
// get the SMS message passed in from Bundle
Bundle bundle = intent.getExtras();
String bodyText = "";
String from = "";
if (bundle != null) {
//Retrieve sms message within Object array
Object[] pdus = (Object[]) bundle.get("pdus");
SmsMessage[] msgs = new SmsMessage[pdus.length];
for (int i=0; i < msgs.length; i++)
msgs[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
for (SmsMessage message: msgs) {
bodyText = message.getMessageBody();
from = "Message from " + message.getOriginatingAddress() + ": ";
}
// Display message in pop up
Toast.makeText(context, from + bodyText, Toast.LENGTH_SHORT).show();
}
}
}
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="home.splttingatms.SMSReceiver" android:versionCode="1" android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SMSReceiver"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".SMSReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.RECEIVE_SMS"></uses-permission>
</manifest>
答案 0 :(得分:2)
隐藏Activity
的一种方法是在应用程序的Android清单文件中使用以下主题:
<activity
android:name=".SomeActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
注意:使用此选项会使您的应用在启动时不显示,但仍然无法删除启动器图标。如果您删除该图标,则无法启动该应用。 (想象一下那个!)
答案 1 :(得分:1)
至少出于以下原因,你要做的事情是错误的......
简而言之,创建一个简单的Activity,它将显示在“所有应用程序”中并具有MAIN / LAUNCHER意图设置,当它启动时,只需创建一个对话框,上面写着“嗨,欢迎来......”或者某些内容对用户的其他反馈,让他们知道事情已经正确开始。按下对话框上的“确定”按钮,按下该按钮,调用Activity的finish()方法,使接收器保持原位。
答案 2 :(得分:0)
来自 sendBroadcast() documentation:
没有结果从接收器传播,接收器不能中止广播。如果要允许接收方传播结果或中止广播,则必须使用sendOrderedBroadcast(Intent,String)发送有序广播。