我想打开我创建的锁而不是默认锁,当电话启动时我的锁被调用。但是我想知道我的屏幕何时被锁定,当时我如何调用我的锁(我的锁定活动)意味着我想在屏幕打开或电话重启时显示我的锁而不是默认值或者一直打开。就像在我们的电话锁中一直呼叫所有时间一样,我想一直打电话给我的锁(完成启动)。所以请任何人帮我如何在屏幕打开/关闭时调用我的锁。请快速帮助谢谢....我为启动时间调用我的锁跟随我想要的屏幕开/关
{ <receiver
android:name=".BootReciever"
android:enabled="true"
android:exported="true" >
<intent-filter android:priority="1" >
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver> } in menifest
答案 0 :(得分:1)
我给出了自己的答案:在我的BootReceiver类中使用follwing方法:
`enter code here`
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
if (intent.getAction() != null) {
if (intent.getAction().equals(Intent.ACTION_USER_PRESENT)) {
Intent s = new Intent(context,ViewPagerMainActivity.class);
s.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(s);
}
}
}
并在清单文件中使用以下内容:
enter code here : use : <action android:name="android.intent.action.USER_PRESENT" />
<receiver
android:name=".BootReciever"
android:enabled="true"
android:exported="false" >
<intent-filter android:priority="1" >
<action android:name="android.intent.action.SCREEN_ON" />
<action android:name="android.intent.action.SCREEN_OFF" />
<action android:name="android.intent.action.USER_PRESENT" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>