我嘗試轉到上一個活動(活動A),但遇到問題。活動B內部命令該得到和我不會回去B:返回上一個活動
答:
if(...)
{
B.staticF();
}
B:
static void staticF()
{
super.onBackPressed();
}
但因爲它是靜態的情況下,我不能使用超。
當然,我可以叫
Intent i = new Intent(this, B.class);
startActivity(i);
,但我不會救B的對照。
嘗試在intent中添加this.youractivityname。 – OnkarDhane 2012-02-10 09:52:40
我更喜歡使用像這樣的「全局」狀態:http://stackoverflow.com/a/708317/862629 – 2012-02-10 10:03:58