我想做如下:
用户按下硬解锁按钮。按下解锁按钮后,我的活动开始了。使用屏幕上的关闭按钮关闭我的活动后,用户提示输入模式锁定(或密码锁定)。进入右模式锁定主屏幕后出现。
我想要以下场景:
按电源/解锁按钮 -> 开始我的活动 -> 单击活动的关闭按钮 -> 提示输入解锁模式 -> 输入模式 -> 显示主屏幕
目前完成如下:
ACTION_USER_PRESENT
在用户输入模式和设备解锁后,使用我的广播接收器获得了活动
使用广播接收器ACTION_SCREEN_ON
,我在按下解锁按钮后收到了日志消息,但在用户输入模式和设备解锁后活动开始。
我尝试使用广播接收器来接收ACTION_SCREEN_ON
and的事件ACTION_USER_PRESENT
。
我的代码如下:
广播接收器 -
public class BrodcastReceiver extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
Log.d("receiver", "main");
if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF))
{
// do whatever you need to do here
Log.d("receiver", "screen off");
}
else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON))
{
// and do whatever you need to do here
Log.d("receiver", "screen on");
context.startActivity(new Intent(context,
unlock_image.class)
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
Log.d("receiver", "aft activity");
}
else if (intent.getAction().equals(Intent.ACTION_USER_PRESENT))
{
Log.d("receiver", "unlock");
context.startActivity(new Intent(context,
unlock_image.class)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
}
}
注册广播监听器 -
IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_ON);
filter.addAction(Intent.ACTION_SCREEN_OFF);
filter.addAction(Intent.ACTION_USER_PRESENT);
BroadcastReceiver mReceiver = new BrodcastReceiver();
registerReceiver(mReceiver, filter);
我尝试了很多,但我无法得到我想要的。如果有人知道如何获得我想要的预期结果,我们将不胜感激。