我希望所有活动按钮上都有一个主页按钮,这样他们就能带您到达起点。我从堆栈溢出和http://developer.android.com/guide/topics/fundamentals/tasks-and-back-stack.html
中的文档链接得到了很多帮助我假设我必须设置FLAG_ACTIVITY_CLEAR_TOP
标志,
文档离子有以下行
启动活动时,您可以通过在传递给startActivity()的intent中包含标志来修改活动与其任务的默认关联。您可以用来修改默认行为的标志是: 好的,我尝试了以下,
new Intent(this,TellaFortuneActivity.class, Intent.FLAG_ACTIVITY_CLEAR_TOP );
和
startActivity(i,Intent.FLAG_ACTIVITY_CLEAR_TOP);
break;
都给了我错误。 我该怎么做?
答案 0 :(得分:4)
Intent i=new Intent(this,TellaFortuneActivity.class);
i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);