Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 初級開發 >> android中使用前進後退的方法

android中使用前進後退的方法

編輯:初級開發

Intent i = new Intent(B.this, C.class);
 i.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY); //什麼含義
 i.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); //什麼含義
startActivity(i);

從Service往Activity跳轉時,要將Intent的Flag設置為FLAG_ACTIVITY_NEW_TASK才可以。

ERROR/androidRuntime(192): Java.lang.RuntimeException: Unable to start receiver com.test.hmenu.HMenuReceiver: android.util.androidRuntimeException: Calling startActivity () from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

程序中有時用R去引用某個對象會出現錯誤,這時要在import中查看這個R是從哪個包裡導入的。

R存在於3個地方

1.android.R系統自帶。

2.存在於自己的某個package中,如果其他package中的類想使用R,必須import com.tour.activity.R;導入才行。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved