我有一个来电的广播接收器。我想在来电时启动一个新的活动。我知道从android 3.0发生的变化,除非用户手动启动,否则广播接收器将无法工作应用 为此,我在其中启动了一个虚拟活动,其中只有一个toast消息。广播接收器无法正常工作。 这是我的代码
我的广播接收器
public class IncomingCallResult extends BroadcastReceiver
{
String TAG="IncomingCallResult";
@Override
public void onReceive(Context arg0, Intent I1)
{
Log.i(TAG,"inside on receive........");
Bundle bundle=I1.getExtras();
String state=bundle.getString(TelephonyManager.EXTRA_STATE);
if(state.equals(TelephonyManager.EXTRA_STATE_RINGING))
{
Intent flash_intent=new Intent(arg0,LedFlasher.class);
flash_intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
arg0.startActivity(flash_intent);
}
}
}
清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.blinker"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.FLASHLIGHT"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver
android:name=".IncomingCallResult"
android:enabled="true">
<intent-filter
android:priority="214783648"
android:name="android.intent.action.PHONE_STATE">
</intent-filter>
</receiver>
<activity
android:name=".LedFlasher"
android:label="@string/title_activity_incoming_call_result" >
</activity>
<activity
android:name=".Dummy">
<intent-filter >
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
代码有什么问题? 请帮忙
答案 0 :(得分:0)
正如您已经知道广播接收器无法正常工作,除非用户手动启动应用程序,您的广播接收器在用户手动之前不会感到惊讶打开您的申请一次。也就是说,您必须制作一个启动器活动,用户可以点击并打开它手动。
更重要的是,最好打开并留在你的应用程序中20秒,因为我记得应用程序配置的更改需要10或20秒才能保存。