如何从Android中的多任务栏中删除应用程序?

时间:2014-01-31 09:57:12

标签: android android-layout android-intent task

我可以在onBackPressed()方法的帮助下删除app。 我是通过以下方法完成的:

public void onBackPressed() {
  // TODO Auto-generated method stub
  super.onBackPressed();
  Intent startMain = new Intent(Intent.ACTION_MAIN);
  startMain.addCategory(Intent.CATEGORY_HOME);
  startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  startActivity(startMain);
  QuestionListActivity.this.finish();
 }

但是应用程序仍然在单元/选项卡的多任务栏中有实例。 我想删除它。请建议..

1 个答案:

答案 0 :(得分:7)

如果您不希望自己的应用出现在最近的应用列表中(长按主页按钮),请将其添加到Activity中的AndroidManifest.xml声明:

android:excludeFromRecents="true"