我已阅读有关此事的线索,但所有这些都是关于在屏幕锁定或解锁时启动活动。但是,无论屏幕是否被锁定,我都需要我的程序启动一个新的活动。
我正在使用gps和邻近警报来检查何时到达目的地。 我的活动注册了一个ProximityAlertReceiver:
private class ProximityAlertReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String key = LocationManager.KEY_PROXIMITY_ENTERING;
Boolean entering = intent.getBooleanExtra(key, false);
if (entering) {
System.out.println("You have entered the proximity area");
} else {
System.out.println("You have exited the proximity area");
}
Bundle bundle = intent.getExtras();
int status = bundle.getInt("status");
Intent i = new Intent();
i.setClass(context, MEcheScreen.class);
Bundle bundle1 = new Bundle();
bundle1.putInt("status", status);
i.putExtras(bundle1);
i.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
context.startActivity(i);
}
}
因此,当我触发接近警报时,将启动一项新活动。
我正在使用public void onNewIntent(Intent newIntent) {}
方法来处理新活动的启动时间。
因此,问题是,当屏幕被锁定并触发了接近警报时,ProximityAlertReceiver类中的Intent不会启动。
我尝试使用keyguardmanager来禁用键盘锁。但是,在它被禁用后,它会返回到程序的主屏幕,但是在我按下按钮或点击屏幕之前,活动仍然没有启动。
答案 0 :(得分:0)
也许您应该发出通知(即使有必要,还会发出声音和闪烁的灯光),如果用户需要,可以从中发起活动,这似乎是正确的做法。
答案 1 :(得分:0)
需要做一些事情......
在您的接收方中在启动活动时添加以下内容
intenet.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
在活动的onCreate中添加
KeyguardManager mKeyGuardManager = (KeyguardManager)getSystemService(KEYGUARD_SERVICE);
KeyguardLock mLock = mKeyGuardManager.newKeyguardLock("name of my app");
mLock.disableKeyguard();
这适用于我在设备启动时推出的应用
然后我也搞乱了
Settings.System.getInt(cr,Settings.System.SCREEN_OFF_TIMEOUT,0);
但这是另一个故事