Android開發——Toolbar組件用法詳解


本文重點講述Android Toolbar的用法,包括它的一些概念和注意事項,如今總結出來分享給Android程序員兄弟們。本文的例子都是基於Android5.0+。 html

Toolbar android

Toolbar是什麼?大概說一下它的官方介紹。Toolbar是應用的內容的標準工具欄,能夠說是Actionbar的升級版,二者不是獨立關係,要使用Toolbar仍是得跟ActionBar扯上關係的。相比Actionbar Toolbar最明顯的一點就是變得很自由,可隨處放置,由於它是做爲一個ViewGroup來定義使用的,因此單純使用ActionBar已經稍顯過期了,它的一些方法已被標註過期。 程序員

那麼它怎麼使用呢,首先咱們同樣要用到v7的支持包,而後定義程序的主題樣式,在style裏得先把Actionbar去掉,有點像欲想練功,必先自宮的感受啊。以下: app

/res/values/styles.xml ide

1 <resources xmlns:android="http://schemas.android.com/apk/res/android">
2     <style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
3         <!-- toolbar(actionbar)顏色 -->
4         <item name="colorPrimary">#4876FF</item>
5         <!-- 狀態欄顏色 -->
6         <item name="colorPrimaryDark">#3A5FCD</item>
7         <!-- 窗口的背景顏色 -->
8         <item name="android:windowBackground">@android :color/white</item>
9         <!-- SearchView -->
10         <item name="searchViewStyle">@style/MySearchViewStyle</item>
11     </style>
12     <style name="AppTheme" parent="@style/AppBaseTheme"></style>
13     <style name="MySearchViewStyle" parent="Widget.AppCompat.SearchView">
14         <!--
15     Background for the search query section (e.g. EditText)
16     <item name="queryBackground">...</item>
17     Background for the actions section (e.g. voice, submit)
18     <item name="submitBackground">...</item>
19     Close button icon
20     <item name="closeIcon">...</item>
21     Search button icon
22     <item name="searchIcon">...</item>
23     Go/commit button icon
24     <item name="goIcon">...</item>
25     Voice search button icon
26     <item name="voiceIcon">...</item>
27     Commit icon shown in the query suggestion row
28     <item name="commitIcon">...</item>
29     Layout for query suggestion rows
30     <item name="suggestionRowLayout">...</item>
31         -->
32     </style>
33 </resources>

去除Actionbar最簡單的方法就是直接繼承NoActionBar的主題了。顏色的屬性說明,仍是下面這張圖最清楚了: 工具

android5.0+(Toolbar)

另外,SearchView在AppCompat中提供了更強的可定製性和更多的樣式可供設置,不過通常咱們用默認的就行。 佈局

還有咱們能夠在values-v21給API21的系統版本設置默認的底部導航欄默認的顏色: 動畫

/res/values-v21/styles.xml this

1 <resources xmlns:android="http://schemas.android.com/apk/res/android">
2     <style name="AppTheme" parent="@style/AppBaseTheme">
3         <!-- 底部導航欄顏色 -->
4         <item name="android:navigationBarColor">#4876FF</item>
5     </style>
6 </resources>

設置好主題的下一步工做:
在xml的layout中定義一個Toolbar: spa

/layout/toolbar.xml

1 <?xml version="1.0" encoding="utf-8"?>
2 <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:app="http://schemas.android.com/apk/res/com.example.toolbar"
4     android:id="@+id/toolbar"
5     android:layout_width="match_parent"
6     android:layout_height="wrap_content"
7     android:background="?attr/colorPrimary"
8     android:minHeight="?attr/actionBarSize"
9     app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
10     app:theme="@style/ThemeOverlay.AppCompat.ActionBar" >
11 </android.support.v7.widget.Toolbar>

咱們把toolbar做爲一個獨立的佈局xml,方便在其餘佈局裏include進去。能夠看到咱們在這裏是能夠設置Toolbar的屬性的,初上面的外還有如下的屬性,都是見名知意的就不一一說明了。

android5.0+(Toolbar)

而後在activity的佈局裏把它include進去就好了,固然通常把它放到最上面了,有須要你是能夠把它放到中間、底部或其它位置的,可見它的自由度是很高的。在下一步呢就到代碼了,在onCreate中:

1 mToolbar = (Toolbar) findViewById(R.id.toolbar);
2 // toolbar.setLogo(R.drawable.ic_launcher);
3 mToolbar.setTitle("Rocko");// 標題的文字需在setSupportActionBar以前,否則會無效
4 // toolbar.setSubtitle("副標題");
5 setSupportActionBar(mToolbar);
6 /* 這些經過ActionBar來設置也是同樣的,注意要在setSupportActionBar(toolbar);以後,否則就報錯了 */
7 // getSupportActionBar().setTitle("標題");
8 // getSupportActionBar().setSubtitle("副標題");
9 // getSupportActionBar().setLogo(R.drawable.ic_launcher);
10 /* 菜單的監聽能夠在toolbar裏設置,也能夠像ActionBar那樣,經過Activity的onOptionsItemSelected回調方法來處理 */
11 mToolbar.setOnMenuItemClickListener(new Toolbar.OnMenuItemClickListener() {
12 @Override
13 public boolean onMenuItemClick(MenuItem item) {
14 switch (item.getItemId()) {
15 case R.id.action_settings:
16 Toast.makeText(MainActivity.this, "action_settings", 0).show();
17 break;
18 case R.id.action_share:
19 Toast.makeText(MainActivity.this, "action_share", 0).show();
20 break;
21 default:
22 break;
23 }
24 return true;
25 }
26 });

上面關鍵的一點就是setSupportActionBar(mToolbar);把Toolbar當作ActionBar給設置了。menu仍是能夠像ActionBar同樣用和處理的:

res/menu/main.xml

1 <menu xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:app="http://schemas.android.com/apk/res-auto"
3     xmlns:tools="http://schemas.android.com/tools"
4     tools:context=".MainActivity" >
5     <item
6         android:id="@+id/ab_search"
7         android:orderInCategory="80"
8         android:title="action_search"
9         app:actionViewClass="android.support.v7.widget.SearchView"
10         app:showAsAction="ifRoom"/>
11     <item
12         android:id="@+id/action_share"
13         android:orderInCategory="90"
14         android:title="action_share"
15         app:actionProviderClass="android.support.v7.widget.ShareActionProvider"
16         app:showAsAction="ifRoom"/>
17     <item
18         android:id="@+id/action_settings"
19         android:orderInCategory="100"
20         android:title="action_settings"
21         app:showAsAction="never"/>
22 </menu>

這一步時候程序的樣子:
android5.0+(Toolbar)   PS.  Genymotion能夠用5.0的模擬器了

能夠感受到這樣是否是和ActionBar沒什麼區別呢。誒,左邊的菜單圖標怎麼出來的呢,其實上面還沒處理到,他就是Navigation drawer了,使用新版本的v四、v7庫的drawer明顯的一點是它帶了一個酷酷的交互動畫(請看最後的gif圖)。那麼使用Toolbar以後又怎麼去在Toolbar中使用drawer呢。下面固然也是跟着代碼來.

/layout/activity_main.xml

1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools"
3     android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:orientation="vertical"
6     tools:context="com.example.toolbar.MainActivity" >
7     <include layout="@layout/toolbar" />
8     <android.support.v4.widget.DrawerLayout
9         android:id="@+id/drawer"
10         android:layout_width="match_parent"
11         android:layout_height="match_parent" >
12         <!-- 內容界面 -->
13         <LinearLayout
14             android:layout_width="match_parent"
15             android:layout_height="match_parent"
16             android:orientation="vertical" >
17             <com.example.toolbar.widget.PagerSlidingTabStrip
18                 android:id="@+id/tabs"
19                 android:layout_width="match_parent"
20                 android:layout_height="48dip" >
21             </com.example.toolbar.widget.PagerSlidingTabStrip>
22             <android.support.v4.view.ViewPager
23                 android:id="@+id/pager"
24                 android:layout_width="match_parent"
25                 android:layout_height="match_parent" >
26             </android.support.v4.view.ViewPager>
27         </LinearLayout>
28         <!-- 側滑菜單內容 -->
29         <LinearLayout
30             android:id="@+id/drawer_view"
31             android:layout_width="match_parent"
32             android:layout_height="match_parent"
33             android:layout_gravity="start"
34             android:background="@drawable/drawer"
35             android:orientation="vertical"
36             android:padding="8dp" >
37             <TextView
38                 android:layout_width="match_parent"
39                 android:layout_height="match_parent" />
40         </LinearLayout>
41     </android.support.v4.widget.DrawerLayout>
42 </LinearLayout>

Pager的東西能夠先忽略,後面會說到。側滑菜單的內容爲簡單起見直接先用圖片來演示了。能夠看到佈局的設置大同小異,不一樣點在代碼中:

1 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
2 mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer);
3 mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, mToolbar, R.string.drawer_open,
4 R.string.drawer_close);
5 mDrawerToggle.syncState();
6 mDrawerLayout.setDrawerListener(mDrawerToggle);


先把圖標設置顯示出來,而後把ActionBarDrawerToggle做爲DrawerLayout的監聽器設置進去,仍是比較簡單的,效果:

android5.0+(Toolbar)

要是須要把drawer覆蓋toolbar怎麼辦呢?須要稍微調整一下界面的佈局位置就好了,效果就不貼上來了(腦補,或者改下源碼的setContentView運行):

1 <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
2     xmlns:tools="http://schemas.android.com/tools"
3     android:id="@+id/drawer"
4     android:layout_width="match_parent"
5     android:layout_height="match_parent"
6     android:fitsSystemWindows="true" >
7     <LinearLayout
8         android:layout_width="match_parent"
9         android:layout_height="match_parent"
10         android:orientation="vertical"
11         tools:context="com.example.toolbar.MainActivity" >
12         <include layout="@layout/toolbar" />
13         <!-- 內容界面 -->
14         <LinearLayout
15             android:layout_width="match_parent"
16             android:layout_height="match_parent"
17             android:background="@drawable/content"
18             android:orientation="vertical" >
19             <com.example.toolbar.widget.PagerSlidingTabStrip
20                 android:id="@+id/tabs"
21                 android:layout_width="match_parent"
22                 android:layout_height="48dip"
23                 android:visibility="invisible" >
24             </com.example.toolbar.widget.PagerSlidingTabStrip>
25             <android.support.v4.view.ViewPager
26                 android:id="@+id/pager"
27                 android:layout_width="match_parent"
28                 android:layout_height="match_parent"
29                 android:visibility="invisible" >
30             </android.support.v4.view.ViewPager>
31         </LinearLayout>
32     </LinearLayout>
33     <!-- 側滑菜單內容 -->
34     <LinearLayout
35         android:id="@+id/drawer_view"
36         android:layout_width="match_parent"
37         android:layout_height="match_parent"
38         android:layout_gravity="start"
39         android:background="@drawable/drawer"
40         android:orientation="vertical"
41         android:clickable="true"
42         android:padding="8dp" >
43         <TextView
44             android:layout_width="match_parent"
45             android:layout_height="match_parent" />
46     </LinearLayout>
47 </android.support.v4.widget.DrawerLayout>

Demo源碼下載地址:http://download.csdn.net/detail/bbld_/8191251

依賴庫android-support-v7-appcompat.rar with Palette : http://download.csdn.net/detail/bbld_/8382913 

本文到此結束,須要的朋友能夠參考下。
相關文章
相關標籤/搜索