1
我有三個活動
A,B,C
A是主屏幕。
的活動推出,遵循A-> B-> C^
在活動B我寫了下面的代碼。
Intent i = new Intent(Intent.ACTION_DIAL);
String p = "tel:" + getString(R.string.phone_number);
i.setData(Uri.parse(p));
startActivity(i);
爲它去DAIL墊,然後按設備的後退按鈕,當它進入A.my要求轉到B.
請幫助我。 在此先感謝。
Intent i = new Intent(Intent.ACTION_DIAL);
String p = "tel:" + getString(R.string.phone_number);
i.setData(Uri.parse(p));
startActivity(i);
這很奇怪。看起來你應該回到活動B.你能提供更多的代碼嗎? – 2012-07-14 09:14:10
你應該檢查下面的鏈接,例如你下載的活動生命週期,並檢查http://developer.android.com/training/basics/activity-lifecycle/index.html – 2012-07-14 09:09:40