Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将任何应用程序的意图发送到所有应用程序屏幕。供您参考所有应用程序屏幕所有应用程序屏幕示例。我无法找到有关此意图的任何帮助。任何帮助将不胜感激。
当我从任何对话框中单击取消时,它应该退出应用程序并且用户必须登陆所有应用程序屏幕。
我用:
Intent startMain = new Intent(Intent.ACTION_MAIN); startMain.addCategory(Intent.CATEGORY_HOME); startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); startActivity(startMain);