我试图在很多天内得到这个(在多个活动之间切换)... atlast我尝试使用意图标志
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) ;
这会有用吗?还是其他任何方式?我不是来这里的。我真正需要的是什么
答案 0 :(得分:1)
在清单中声明为 android:launchMode =“singleInstance”在相应的activty xml标签下,如
[this](http://developer.android.com/guide/topics/manifest/activity-element.html“”) 作品