无法弄清楚如何设置FLAG_ACTIVITY_CLEAR_TOP

时间:2012-06-14 23:43:04

标签: android android-intent

我希望所有活动按钮上都有一个主页按钮,这样他们就能带您到达起点。我从堆栈溢出和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;

都给了我错误。 我该怎么做?

1 个答案:

答案 0 :(得分:4)

Intent i=new Intent(this,TellaFortuneActivity.class);

i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);