我是android的初学者。当我单击按钮KILL 选定应用程序以关闭或终止特定(运行)应用程序或选定应用程序时。我知道这是可能的。但是如何解决它。我的示例 UI 是
http://answers.oreilly.com/index.php?app=core&module=attach§ion=attach&attach_rel_module=post&attach_id=555
我尝试使用一些代码。但是所有的代码都只能用于关闭活动。未关闭的应用程序。我可以尝试参考一些stackoverflow答案。但我什么都不清楚。我的代码是
finish();
System.exit(0);
Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_HOME);
startActivity(i);
android.os.Process.killProcess(android.os.Process.myPid());
请回复您的答案和意见对我很有价值。谢谢。