我有一个应用程序,它注册自己为默认启动器,并在启动时自动固定自己。
当安装应用程序时,这一切都很好。它固定自己,只有后退按钮可见。
问题是当设备第一次启动时,它不能正确地固定。我多次看到一系列"屏幕固定"one_answers"屏幕未固定"的祝酒词。"Home"one_answers"Recent Tasks"按钮仍然可见。
,
运行"adb shell dumpsys activity activities" -最后一行表示它没有固定:
mLockTaskModeState=NONE mLockTaskPackages (userId:packages)=
0:[com.example.myapp]
mLockTaskModeTasks[]
,
测试设备华硕ZenPad运行Marshmallow/6.0/23
我依靠MainActivity清单属性"lockTaskMode"来固定(而不是activity.startLockTask()):
<activity
android:name=".MainActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/launcher_main"
android:launchMode="singleTask"
android:lockTaskMode="if_whitelisted"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
任何帮助或指针将不胜感激
我有同样的问题,我真的只能找到一个解决方案。我不确定为什么,但是,是的,在android中某些东西阻止任务锁定在启动时,这让我很困惑,因为任务锁定是为了创建这些"kiosk"类型的应用程序而设计的。我能找到的唯一解决方案是检测它没有锁定的情况,然后重新启动应用程序。这有点"粗俗",但你还能做什么呢?
为了检测它没有锁定的情况,我创建了一个状态变量并分配状态(Locking, Locked, Unlocking, Unlocked)。然后在ontaskmodeexit的设备管理接收器中,如果状态不是"解锁",那么我知道它自己解锁了。因此,如果这种情况发生在它失败的地方,那么我将使用以下方法重新启动应用程序(该方法在警报管理器中调度应用程序,然后杀死应用程序):
如何以编程方式"重启";android应用程序?
下面是一些示例代码:DeviceAdminReceiver
@Override
public void onLockTaskModeEntering(Context context, Intent intent, String pkg) {
super.onLockTaskModeEntering(context, intent, pkg);
Lockdown.LockState = Lockdown.LOCK_STATE_LOCKED;
}
@Override
public void onLockTaskModeExiting(Context context, Intent intent) {
super.onLockTaskModeExiting(context, intent);
if (Lockdown.LockState != Lockdown.LOCK_STATE_UNLOCKING) {
MainActivity.restartActivity(context);
}
Lockdown.LockState = Lockdown.LOCK_STATE_UNLOCKED;
}
MainActivity
public static void restartActivity(Context context) {
if (context != null) {
PackageManager pm = context.getPackageManager();
if (pm != null) {
Intent intent = pm.getLaunchIntentForPackage(context.getPackageName());
if (intent != null) {
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
int pendingIntentId = 223344;
PendingIntent pendingIntent = PendingIntent.getActivity(context, pendingIntentId, intent, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager mgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, pendingIntent);
System.exit(0);
}
}
}
}
private void lock() {
Lockdown.LockState = Lockdown.LOCK_STATE_LOCKING;
startLockTask();
}
private void unlock() {
ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
if (am.getLockTaskModeState() == ActivityManager.LOCK_TASK_MODE_LOCKED) {
Lockdown.LockState = Lockdown.LOCK_STATE_UNLOCKING;
stopLockTask();
}
}
事实上,这是我实现的一个简化版本。但它应该能让你找到一个解决方案。
目前我找到的唯一解决方案:制作另一个启动应用程序,没有locktask,每次启动器出现时都会触发主应用程序。这可以防止用户在使用BOOT_COMPLETED接收器调用locktask应用程序之前等待几秒钟。因此,只有当lockTask应用程序在manifest中为某些活动具有启动器属性时,我们才能遇到这个问题。
抱歉回复晚了,但是…
任何人都有这个问题可以做这个棘手的工作在第一个(LAUNCHER/HOME)活动(例如MainActivity):
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (mSharedPreferences.getBoolean(KEY_PREF_RECREATED, false)) {
mSharedPreferences.edit().putBoolean(KEY_PREF_RECREATED, false).apply();
// start LOCK TASK here
} else {
mSharedPreferences.edit().putBoolean(KEY_PREF_RECREATED, true).apply();
finish(); // close the app
startActivity(new Intent(this, MainActivity.class)); // reopen the app
return;
}
setContentView(R.layout.activity_main);
// other codes
}