我可以在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();
}
但是应用程序仍然在单元/选项卡的多任务栏中有实例。 我想删除它。请建议..
答案 0 :(得分:7)
如果您不希望自己的应用出现在最近的应用列表中(长按主页按钮),请将其添加到Activity
中的AndroidManifest.xml
声明:
android:excludeFromRecents="true"