0

我试图从很多天开始(在多个活动之间切换)......最后我尝试使用意图标志来做到这一点

Intent intent = new Intent(getApplicationContext(),Act1.class);

if(a1)  // a1 is set true during oncreate of act1
intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);

startActivity(intent) ;

这行得通吗??还是其他方式??我不来这里。我到底需要什么

4

1 回答 1

1

在相应的活动 xml 标记下在清单中声明为 android:launchMode="singleInstance",例如

[这个](http://developer.android.com/guide/topics/manifest/activity-element.html “”)有效

于 2013-10-02T18:52:25.727 回答