我的Android应用拥有设备所有者状态,可以通过拨打startLockTask()
我想弄清楚的是如何从我的应用程序中调用另一个应用程序,并将其保持在kiosk模式。我可以设置任何标志,以保持这个新应用程序在同一个任务中吗?目前它不会让我打电话给我的申请,因为在kiosk模式下不允许取消固定。
我也无法在此应用中调用stopLockTask()
,然后在其他应用中调用startLockTask()
,因为其他应用不会是设备所有者(除非......我可以拥有多个设备)主人吗?)
答案 0 :(得分:0)
找到解决方案。以下是我的方法。
private void enableKioskMode() {
ComponentName deviceAdmin = new ComponentName(this, AdminReceiver.class);
DevicePolicyManager mDpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
// First of all, to access anything you must be device owner
if (mDpm.isDeviceOwnerApp(getPackageName())) {
// If not device admin, ask to become one
if (!mDpm.isAdminActive(deviceAdmin) &&
mDpm.isDeviceOwnerApp(getPackageName())) {
Log.v(TAG, "Not device admin. Asking device owner to become one.");
Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, deviceAdmin);
intent.putExtra(DevicePolicyManager.EXTRA_ADD_EXPLANATION,
"You need to be a device admin to enable kiosk mode.");
startActivity(intent);
}
// Device owner and admin : enter kiosk mode
else {
mDpm.setLockTaskPackages(deviceAdmin, new String[]{
getPackageName(), /** PUT OTHER PACKAGE NAMES HERE! */
});
startLockTask();
}
}
// Not device owner - can't access anything
else {
Log.v(TAG, "Not device owner");
Toast.makeText(this, "Not device owner", Toast.LENGTH_SHORT).show();
}
}
您需要做的就是在String[]
中创建的上述mDpm.setLockTaskPackages()
中,将要以自助服务终端模式运行的任何其他应用的包名称。接下来,确保在将意图发送到其他应用程序之前调用stopLockTask()
。否则,您将无法离开此应用,因为它已被锁定。
然后,您只需从startLockTask()
中的任何一个应用程序中调用String[]
即可。主页和最近的应用程序按钮将消失,而不是询问您是否要固定这些应用程序,它们将锁定到自助服务终端模式。当你完成后,请记得致电stopLockTask()
!