• This is Slide 1 Title

    This is slide 1 description. Go to Edit HTML and replace these sentences with your own words.

  • This is Slide 2 Title

    This is slide 2 description. Go to Edit HTML and replace these sentences with your own words.

  • This is Slide 3 Title

    This is slide 3 description. Go to Edit HTML and replace these sentences with your own words.

2017年12月9日 星期六

Android Studio:退出/刪除活動頁(Activity)。

進入新活動頁(Activity)時,刪除舊活動頁(Activity)不能從後退按鈕再次訪問。
你只需要調用finish()
ex. Intent intent = new Intent(this, NextActivity.class); startActivity(intent); finish();