http://florent-dupont.blogspot.ro/2015/02/android-5-screen-pinning.html
从固定应用中,您无法启动辅助应用,除非此应用 具有相同的共享用户ID(这意味着sharedUserIdis设置 在AndroidManifest.xml中,第二个应用程序已打包 使用相同的证书)。其他应用程序的活动将不被允许 开始这样做(通过使用Context.startActivity())将简单 被忽略了。
我已经完成了上述两件事,但startActivity()
仍然被忽略了。
来自https://developer.android.com/reference/android/R.attr.html#lockTaskMode:
如果系统已经处于lockTask模式,则以新任务为根 启动此活动,任务将开始或不开始依赖 关于此活动的包裹是否已列入白名单。
看起来我已采取必要的步骤来实现这一目标。
有人在那里工作吗?
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
ComponentName deviceAdmin = new ComponentName(this, AdminReceiver.class);
mDpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
if (!mDpm.isAdminActive(deviceAdmin)) {
Toast.makeText(this, getString(R.string.not_device_admin), Toast.LENGTH_SHORT).show();
}
if (mDpm.isDeviceOwnerApp(getPackageName()))
{
mDpm.setLockTaskPackages(deviceAdmin, new String[]{getPackageName(), "com.that.other.package"});
try
{
enableKioskMode(true);
PackageManager pm = this.getPackageManager();
Intent it = pm.getLaunchIntentForPackage("com.that.other.package");
if (null != it) {
this.startActivity(it);
Log.d(_TAG, "Started activity for com.that.other.package");
}
}
catch (Exception e)
{
Log.e(_TAG, e.getMessage());
finish();
}
} else {
Toast.makeText(this, getString(R.string.not_device_owner), Toast.LENGTH_SHORT).show();
}
}
private void enableKioskMode(boolean enabled) throws Exception
{
if (enabled)
{
if (mDpm.isLockTaskPermitted(this.getPackageName()))
{
startLockTask();
mIsKioskEnabled = true;
mButton.setText(getString(R.string.exit_kiosk_mode));
} else {
Toast.makeText(this, getString(R.string.kiosk_not_permitted), Toast.LENGTH_SHORT).show();
}
} else {
stopLockTask();
mIsKioskEnabled = false;
mButton.setText(getString(R.string.enter_kiosk_mode));
}
}
答案 0 :(得分:0)
原来我错过了android:taskAffinity
标签。将它指向两个包中的相同字符串,startActivity()
应该开始表现。