我在AndroidManifest.xml中定义了一个BroadCastReceiver,如下所示
<receiver
android:name="com.example.hello.ScreenUnlockReceiver"
android:enabled="true"
android:singleUser="true">
<intent-filter>
<action android:name="android.content.Intent.ACTION_USER_PRESENT" />
</intent-filter>
</receiver>
并将Receiver定义如下:
public class ScreenUnlockReceiver
extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
//start activity
Intent i = new Intent();
i.setClassName("com.example.hello", "LoginActivity");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
但是当我解锁屏幕并且没有显示LoginActivity时,不会触发广播接收器。 LoginActivity是android sdk附带的默认loginactivity。
我错过了使用权限或其他内容,请告诉我。 感谢
Santhosh
答案 0 :(得分:4)
你应该解决这个问题i.setClassName("com.example.hello", "com.example.hello.LoginActivity")
答案 1 :(得分:4)
你必须拦截的行动是:
<intent-filter>
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>