Toolbar


1.官方文檔內(nèi)容

toolbar.png

toolbar是android.support.v7.widget包中的一個(gè)類,兼容低版本的API晚吞,如果你開發(fā)的項(xiàng)目最低要求的API版本是21肛冶,那么你也可以使用android.widget.包中的toolbar。它可以放置在一個(gè)視圖層次結(jié)構(gòu)中嵌套的任意級別,應(yīng)用程序可以使用方法setSupportActionBar將一個(gè)ActionBar替換為toolbar诚卸,toolBar支持比ActionBar更集中的功能集。

2.toolbar的基本使用:

(1)第一步绘迁,在使用之前我們需要把ActionBar隱藏合溺。

也可以不隱藏ActionBar作為一個(gè)獨(dú)立控件使用。

ActionBar的方式有:

  • 在AndroidManifest中通過屬性theme隱藏:
        <activity
            android:name=".MainActivity"
            android:theme="@android:style/Theme.Light.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

注:該方式的使用條件是你的XxxActivity必須繼承自Activity,如果繼承自AppCompatActivity缀台,會報(bào)如下圖的錯(cuò)誤:

錯(cuò)誤.png

我們需要使用如下theme:

android:theme="@style/Theme.AppCompat.Light.NoActionBar"
  • 在Activity中獲取到ActionBar棠赛,利用ActionBar的方法進(jìn)行隱藏;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.hide();
        }
    }

注:以上方式兼容任何級別的API膛腐;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ActionBar actionBar = getActionBar();
        if (actionBar != null) {
            actionBar.hide();
        }
    }

注:以上方式API21以上才會起作用睛约。

  • 在Activity中設(shè)置如下代碼:
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
//        supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_main);
    }

注:使用上述代碼時(shí),必須放到setContentView方法之前調(diào)用哲身。

(2)第二步辩涝,在xml中添加toolbar控件,代碼如下勘天;

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/colorPrimary"
        >
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/custom"/>

    </android.support.v7.widget.Toolbar>

注:上面代碼中的TextView為自定義控件怔揩。?attr/actionBarSize表示根據(jù)屏幕的分辨率采用系統(tǒng)默認(rèn)的高度,低版本要使用的話脯丝,需要使用V7包中的商膊,否則只有api21以上才能使用。

(3)第三步宠进,在Activity中添加toolbar晕拆,代碼如下;

    @BindView(R.id.toolbar)
    Toolbar mToolbar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_zhifu);
        ButterKnife.bind(this);

        mToolbar.inflateMenu(R.menu.toolbar_menu);          //設(shè)置右上角的填充菜單
        mToolbar.setNavigationIcon(R.mipmap.ic_drawer_home);//設(shè)置導(dǎo)航欄圖標(biāo)
        mToolbar.setLogo(R.mipmap.ic_launcher);             //設(shè)置app的logo

        mToolbar.setTitle("Title");                         //設(shè)置主標(biāo)題
        mToolbar.setTitleTextColor(Color.MAGENTA);
        mToolbar.setSubtitle("Subtitle");                   //設(shè)置子標(biāo)題
        mToolbar.setSubtitleTextColor(Color.WHITE);

        //設(shè)置菜單的點(diǎn)擊事件
        mToolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
            @Override
            public boolean onMenuItemClick(MenuItem item) {
                switch (item.getItemId()){
                    case R.id.action_search:
                        Toast.makeText(ZhifuActivity.this, R.string.menu_search, Toast.LENGTH_SHORT).show();
                        break;
                    case R.id.action_notification:
                        Toast.makeText(ZhifuActivity.this, R.string.menu_notifications, Toast.LENGTH_SHORT).show();
                        break;
                    case R.id.action_item01:
                        Toast.makeText(ZhifuActivity.this, R.string.item01, Toast.LENGTH_SHORT).show();
                        break;
                    case R.id.action_item02:
                        Toast.makeText(ZhifuActivity.this, R.string.item02, Toast.LENGTH_SHORT).show();
                        break;
                }
                return true;
            }
        });
    }

用到的菜單xml(R.menu.toolbar_menu)如下:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/action_search"
        android:icon="@mipmap/ic_search"
        android:title="@string/menu_search"
        app:showAsAction="ifRoom"/>
    <item
        android:id="@+id/action_notification"
        android:icon="@mipmap/ic_notifications"
        android:title="@string/menu_notifications"
        app:showAsAction="ifRoom"/>
    <item
        android:id="@+id/action_item01"
        android:title="@string/item01"
        app:showAsAction="never"/>
     <item
        android:id="@+id/action_item02"
        android:title="@string/item02"
        app:showAsAction="never"/>
</menu>

注:我們可以在xml中使用第三步中java代碼的屬性砰苍,如下所示:

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:background="@color/color_0176da"
        toolbar:logo="@mipmap/ic_launcher"
        toolbar:navigationIcon="@mipmap/ic_drawer_home"
        toolbar:subtitle="123"
        toolbar:title="112"
        >
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/custom"/>

    </android.support.v7.widget.Toolbar>

注:在xml中有些屬性需要使用toolbar:才會有作用潦匈。

常用操作:
(1)改變菜單(R.menu.toolbar_menu)的字體顏色:

  • 在styles.xml中定義一個(gè)Theme,并設(shè)置android:textColorPrimary屬性,
<style name="Theme.ToolBar.Base" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:textColorPrimary">@color/color_red</item>
</style>
  • 在布局文件的Toolbar中設(shè)置popupTheme:
 toolbar:popupTheme="@style/Theme.ToolBar.Base"

3.仿知乎的標(biāo)題欄

實(shí)現(xiàn)效果如下:

仿知乎的標(biāo)題欄.gif

代碼如下赚导,
ZhihuActivity.java:

public class ZhifuActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_zhifu);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        toolbar.inflateMenu(R.menu.zhihu_toolbar_menu);
        toolbar.setNavigationIcon(R.mipmap.ic_drawer_home);
        toolbar.setTitle(R.string.home_page);
        toolbar.setTitleTextColor(getResources().getColor(android.R.color.white));
    }
}

主布局activity_zhihu.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_zhifu"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.gjj.gd.materialdesign_v7.toolbar.ZhifuActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:background="@color/color_0176da"
        android:theme="@style/Theme.Toolbar.ZhiHu">

    </android.support.v7.widget.Toolbar>
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/white">
        <ImageView
            android:layout_width="60dp"
            android:layout_height="60dp"
            android:layout_centerInParent="true"
            android:src="@mipmap/ic_zhihu_logo"/>
    </RelativeLayout>
</LinearLayout>

toolbar中的三點(diǎn)對應(yīng)的menu布局zhihu_toolbar_menu.xml:

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/ic_search"
        android:icon="@mipmap/ic_search"
        android:title="@string/menu_search"
        app:showAsAction="ifRoom"
        />
    <item
        android:id="@+id/action_notification"
        android:icon="@mipmap/ic_notifications"
        android:title="@string/menu_notifications"
        app:showAsAction="ifRoom"
        />
    <item
        android:id="@+id/action_setting"
        android:orderInCategory="100"
        android:title="@string/menu_setting"
        app:showAsAction="never"
        />
    <item
        android:id="@+id/action_about"
        android:orderInCategory="101"
        android:title="@string/menu_about"
        app:showAsAction="never"
        />


</menu>

布局中用到的樣式:

    <style name="Theme.Toolbar.ZhiHu" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="android:actionOverflowButtonStyle">@style/ActionButton.Overflow.ZhiHu</item>
    </style>

    <style name="ActionButton.Overflow.ZhiHu" parent="android:style/Widget.Holo.Light.ActionButton.Overflow">
        <item name="android:src">@mipmap/ic_menu_more_overflow</item>
    </style>

4.toolbar實(shí)例1

結(jié)合DrawerLayout寫了一個(gè)簡單實(shí)例。


toolbar實(shí)例1.gif

5.toolbar實(shí)例2

自定義了更多的彈出菜單布局赤惊,利用了PopWindow吼旧。

自定義了彈出菜單popwindow.gif

源碼地址:https://github.com/gaojuanjuan/MaterialDesign_V7

參考文章:

  1. Android 5.x Theme 與 ToolBar 實(shí)戰(zhàn)
    本文出自:張鴻洋的博客;
  2. android Toolbar控件;
  3. Android Material Design之Toolbar與Palette實(shí)踐
    本文出自:Rocko's bog;
  4. Android開發(fā):最詳細(xì)的 Toolbar 開發(fā)實(shí)踐總結(jié);
  5. ToolBar的使用
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市未舟,隨后出現(xiàn)的幾起案子圈暗,更是在濱河造成了極大的恐慌掂为,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件员串,死亡現(xiàn)場離奇詭異勇哗,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)寸齐,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進(jìn)店門欲诺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人渺鹦,你說我怎么就攤上這事扰法。” “怎么了毅厚?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵吸耿,是天一觀的道長咽安。 經(jīng)常有香客問我是偷,道長募逞,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任刺啦,我火速辦了婚禮纠脾,結(jié)果婚禮上糊渊,老公的妹妹穿的比我還像新娘渺绒。我一直安慰自己躏鱼,他們只是感情好殷绍,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布染苛。 她就那樣靜靜地躺著镰烧,像睡著了一般。 火紅的嫁衣襯著肌膚如雪度陆。 梳的紋絲不亂的頭發(fā)上献幔,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天蹬蚁,我揣著相機(jī)與錄音情连,去河邊找鬼。 笑死虫几,一個(gè)胖子當(dāng)著我的面吹牛螃诅,可吹牛的內(nèi)容都是我干的穗椅。 我是一名探鬼主播,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼袍镀,長吁一口氣:“原來是場噩夢啊……” “哼默蚌!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起苇羡,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤绸吸,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后设江,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體锦茁,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年叉存,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了码俩。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,163評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡歼捏,死狀恐怖稿存,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情瞳秽,我是刑警寧澤瓣履,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站寂诱,受9級特大地震影響拂苹,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜痰洒,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一瓢棒、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧丘喻,春花似錦脯宿、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽榴芳。三九已至,卻和暖如春跺撼,著一層夾襖步出監(jiān)牢的瞬間窟感,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工歉井, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留柿祈,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓哩至,卻偏偏與公主長得像躏嚎,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子菩貌,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容