2

I would like a home button on all my actives so they can bring you to the starting point. I got some great help from stack overflow and a link to the document in http://developer.android.com/guide/topics/fundamentals/tasks-and-back-stack.html

I'm assuming I will have to set the FLAG_ACTIVITY_CLEAR_TOP flag, the document ion has the following line

When starting an activity, you can modify the default association of an activity to its task by including flags in the intent that you deliver to startActivity(). The flags you can use to modify the default behavior are: Ok I tried the following,

 new Intent(this,TellaFortuneActivity.class,  Intent.FLAG_ACTIVITY_CLEAR_TOP );

and

 startActivity(i,Intent.FLAG_ACTIVITY_CLEAR_TOP); 
 break;

both gave me errors. How do I do this?

4

1 回答 1

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

i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
于 2012-06-14T23:51:22.227 回答