溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中ActionBar和ToolBar添加返回箭頭的實例代碼

發(fā)布時間:2020-10-20 22:00:02 來源:腳本之家 閱讀:163 作者:Karl凱 欄目:移動開發(fā)

 1.ActionBar添加返回箭頭

//onCreate方法中
ActionBar actionBar = this.getSupportActionBar();
actionBar.setTitle("搜索功能");
actionBar.setDisplayHomeAsUpEnabled(true);
//activity類中的方法
@Override
  public boolean onOptionsItemSelected(MenuItem item) {
    if(item.getItemId() == android.R.id.home)
    {
      finish();
      return true;
    }
    return super.onOptionsItemSelected(item);
  }

在這里,ActionBar引入包:import android.support.v7.app.ActionBar;

2. ToolBar添加返回箭頭

代碼如下:

//onCreate函數(shù)中
Toolbar mToolbarTb = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(mToolbarTb);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
//activity類中的方法
//添加點擊返回箭頭事件
@Override
public boolean onOptionsItemSelected(MenuItem item) {
  if(item.getItemId() == android.R.id.home)
  {
    finish();
    return true;
  }
  return super.onOptionsItemSelected(item);
}

總結

以上所述是小編給大家介紹的Android中ActionBar和ToolBar添加返回箭頭的實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI