The Up button in the action bar.
原本的up button按了會返回上一個parent activityback與home的差別
也可以更改為返回上一頁
範例 code如下
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home: //為up butoon的id
onBackPressed();
return true;
}
return super.onOptionsItemSelected(item);
}
沒有留言:
張貼留言