我在 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>
并将接收器定义如下:
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 附带的默认登录活动。
我是否遗漏了使用许可或其他内容,请告诉我。谢谢
桑托什