Android基礎 使用ToolBar教你打造一個通用的標題欄

smartsean發表於2017-12-20

現在專案中一般都會使用標題欄,谷歌在2014年推出了新的app bar---ToolBar,代替了以前使用的ActionBar。在做專案中會經常用到這個ToolBar,雖然用的很多,但是自己對它如何用還不是很明白,今天就來簡單的學習下這個控制元件的使用。

效果圖

效果圖

1. 修改app的style

我們如果要使用ToolBar,需要先把原來的ActionBar隱藏起來,就先要設定App的主題為Theme.AppCompat.Light.NoActionBar這種主題,就需要在values/style.xml裡面修改Apptheme 的Parent或者parent的parent為Theme.AppCompat.Light.NoActionBar,這樣的話才能使用ToolBar得到我們想要的效果。

2. 在佈局中使用ToolBar達到效果圖

1.標題

首先在佈局檔案activity_main.xml中:

   <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:background="#ffffff"
        android:gravity="center"
        app:titleTextColor="#1d1d1d">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="工作"
            android:textColor="#1d1d1d"
            android:textSize="16sp" />
    </android.support.v7.widget.Toolbar>
複製程式碼

需要說明的是,ToolBar其實也是一個ViewGroup,他的佈局和LinearLayout類似,所以在使用的過程中,可以使用android:layout_gravity="center"來讓TextView居中顯示

這個時候的標題欄是這樣的:

標題欄-無返回箭頭-無右側按鈕

2. 右側按鈕

標題欄已經居中顯示了,但是我們可能還需要在右側需要一個按鈕來進行一定的操作,比如下面的操作

標題欄-無返回箭頭

這個怎麼實現呢,看下面的程式碼:

第一種實現


    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:background="#ffffff"
        android:gravity="center"
        app:titleTextColor="#1d1d1d">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_gravity="center"
            android:text="工作"
            android:textColor="#1d1d1d"
            android:textSize="16sp" />
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:layout_alignParentRight="true"
                android:layout_marginRight="12dp"
                android:text="按鈕"
                android:textColor="#1d1d1d"
                android:textSize="14sp" />
        </RelativeLayout>
    </android.support.v7.widget.Toolbar>
複製程式碼

這裡在ToolBar的自定義區放入了一個RelativeLayout,在RelativeLayout裡面放置了一個標題和右側的按鈕,右側的按鈕是可以隨意定製的,

第二種實現

我們可以利用選單選項menu來實現這種效果,

  1. 首先在res目錄下新建menu資料夾,在該資料夾下面建立menu.main.xml,程式碼如下:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity">
    <item
        android:id="@+id/action_share"
        android:orderInCategory="90"
        android:title="按鈕"
        app:showAsAction="ifRoom" />
</menu>
複製程式碼
  1. MainActivity.java中重寫onCreateOptionsMenu方法如下所示:
@Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }
複製程式碼

3. 左側的返回箭頭

首先,你得先準備一個返回箭頭的圖示,然後以下兩種都行,都可以實現顯示小箭頭,並且點選小箭頭返回

第一種方案

//設定小箭頭
        toolbar.setNavigationIcon(R.drawable.common_back_ic);
        //設定小箭頭點選事件
        toolbar.setNavigationOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                finish();
            }
        });
複製程式碼

這種方案是隻能在當前的Activity中使用,達不到複用的目的。

第二種方案

在日常的開發中,通常我們會寫一個基類,讓所有的Activity都繼承於這個基類,便於統一管理和減少程式碼量。 所以我們可以在改基類(比如:BaseActivity.java)中寫入以下方法:

/**
     * 設定左上角back按鈕
     */
    public void setBackArrow() {

        final Drawable upArrow = getResources().getDrawable(R.drawable.common_back_ic);
        //給ToolBar設定左側的圖示
        getSupportActionBar().setHomeAsUpIndicator(upArrow);
        // 給左上角圖示的左邊加上一個返回的圖示 。對應ActionBar.DISPLAY_HOME_AS_UP
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);
        //設定actionBar的標題是否顯示,對應ActionBar.DISPLAY_SHOW_TITLE。
        getSupportActionBar().setDisplayShowTitleEnabled(false);
    }


/**
     * 點選左上角的返回按鈕,結束本Activity
     * home就是左上角的小箭頭,在toolbar上
     *
     * @param item
     * @return
     */
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {

        if (item.getItemId() == android.R.id.home) {
            basefinish();
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

/**
     * 抽象方法,用於結束activity
     */
    public abstract void basefinish();


 @Override
    public void onBackPressed() {

        basefinish();
    }
複製程式碼

這樣的話,我們在的其他Activity只要繼承於這個BaseActivity,就需要實現抽象方法,抽象方法會實現返回操作,我們每次只用呼叫 setBackArrow()這個方法就可以很方便的實現返回小箭頭的功能了。簡直不能更方便啦!

到此就實現了ToolBar的基本使用,建立了自己的一個標題欄,效果和上面是一樣的:

標題欄-最終

特此記錄!

猜你喜歡

Android進階 一個專案,一個Toolbar


你可以通過以下方式關注我:

  1. CSDN
  2. 掘金
  3. 個人部落格
  4. Github

相關文章