Android Material Design 控件 Toolbar

1 开始使用

compile 'com.android.support:appcompat-v7:25.3.1'
  • 去掉默认的Actionbar
 <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
  • 继承AppCompatActivity的可以直接使用
setSupportActionBar(mToolBar);`
  • 基本配置
<android.support.v7.widget.Toolbar      
        xmlns:android="http://schemas.android.com/apk/res/android"      
        xmlns:app="http://schemas.android.com/apk/res-auto"      
        android:id="@+id/toolbar"      
        android:layout_width="match_parent"      
        android:layout_height="?attr/actionBarSize"      
        android:background="?attr/colorPrimary"      
        android:theme="@style/ThemeOverlay.AppCompat.ActionBar"      
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light">  
</android.support.v7.widget.Toolbar>
<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?actionBarSize"
        />

2 常用属性

 android:elevation="4dp"
app:navigationIcon="@drawable/icon_back"
app:titleTextAppearance="@style/Toolbar.TitleText"
//TextView作为自定义标题 样式统一
android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"

//定义样式 
<style name="ClassicAppBarThemeOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
     <style name="ClassicPopupThemeOverlay" parent="ThemeOverlay.AppCompat.Light" />
//使用    注意:换样式用android:theme=””  不用style=”“
    android:theme="@style/ClassicAppBarThemeOverlay"
        app:popupTheme="@style/ClassicPopupThemeOverlay"

3 菜单

  • 使用menu定义弹出菜单
//showAsAction
//always:显示在主界面上
//never:不显示在主界面,只出现在更多中
//ifRoom:有位置才显示,否则折叠到更多
<?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/share"
        android:title="分享"
        android:icon="@drawable/share"
        android:orderInCategory="3"
        app:showAsAction="ifRoom" />
    <item
        android:id="@+id/cacle"
        android:title="收藏"
        android:orderInCategory="1"
        app:showAsAction="never" />
    <item
        android:id="@+id/setting"
        android:title="设置"
        android:icon="@drawable/setting"
        android:orderInCategory="4"
        app:showAsAction="never" />
</menu>
  • 自定义的ActionView 点击效果 与普通的menuItem一致
style="@style/Widget.AppCompat.ActionButton"

自定义菜单:http://blog.csdn.net/richiezhu/article/details/52228251

方法1
  • 设置菜单
@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;  
}

设置监听

@Override
 protected boolean onOptionsItemSelected(MenuItem item) {  
        Intent intent;  
        switch (item.getItemId()) {  
        case R.id.action_favorite:    
            // User chose the "Favorite" action, mark the current item
            // as a favorite...
            return true;   
        case R.id.action_favorite: 
            // User chose the "Favorite" action, mark the current item    
            // as a favorite...            
            return true;        
        default:            
            // If we got here, the user's action was not recognized.   
            // Invoke the superclass to handle it.            
            return super.onOptionsItemSelected(item);
        }  
}
方法2
  • 设置菜单
toolbar.inflateMenu(R.menu.base_toolbar_menu);

设置监听

toolbar.setOnMenuItemClickListener
  • 动态改变menu item显示或隐藏
toolbar.getMenu().findItem(R.id.menu_refresh).setVisible(false);

4 常用方法

setSupportActionBar(toolbar);`
getSupportActionBar().setLogo(R.mipmap.ic_launcher);
getSupportActionBar().setHomeButtonEnabled(true); //设置返回键可用
// 显示标题和子标题, 对应ActionBar.DISPLAY_SHOW_TITLE
getSupportActionBar().setDisplayShowTitleEnabled(true);
// 显示应用的Logo 左上角图标icon
getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setDisplayUseLogoEnabled(true);
//使左上角图标是否显示,对应id为android.R.id.home,对应ActionBar.DISPLAY_SHOW_HOME
getSupportActionBar().setDisplayShowHomeEnabled(true);
// 给左上角图标的左边加上一个返回的图标,决定左上角图标的左侧是否有向左的小箭头, true 有小箭头,并且图标可以点击
getSupportActionBar().setDisplayHomeAsUpEnabled(true);



//setNavigationIcon 需要放在 setSupportActionBar 之后才会生效
toolbar.setNavigationIcon(R.mipmap.ic_drawer_home);//设置导航栏图标
toolbar.setLogo(R.mipmap.ic_launcher);//设置app logo
toolbar.setTitle("Title");//设置主标题
toolbar.setSubtitle("Subtitle");//设置子标题
toolbar.inflateMenu(R.menu.base_toolbar_menu);//设置右上角的填充菜单
toolbar.setOnMenuItemClickListener
//
toolbar.setTitleTextColor
toolbar.setTitleTextAppearance
//
toolbar.setSubtitleTextColor
toolbar.setSubtitleTextAppearance
//
toolbar.setTitleMargin
toolbar.setPopupTheme
toolbar.setOverflowIcon

5 更改样式

  • 改变弹出菜单文字样式
  • android:textColorPrimary
  • android:colorBackground
//写在Toolbar主题下
<item name="android:textColor">@android:color/white</item> 
 <item name="android:textSize">25dp</item>
  • 改变主界面上的菜单文字样式、更多菜单的按钮图标
 <item name="actionMenuTextColor">@android:color/white</item>
 <item name="android:textSize">25dp</item>

 <style name="ToolbarTheme" parent="Theme.AppCompat.Light">
      <item name="actionOverflowButtonStyle">@style/MyActionOverflowButton</item>
    </style>

 <style name="MyActionOverflowButton2" parent="android:style/Widget.Holo.Light.ActionButton.Overflow">
        <item name="android:src">@mipmap/ic_menu_more_overflow</item>
    </style>
    <style name="MyActionOverflowButton" parent="Widget.AppCompat.ActionButton.Overflow">
        <item name="android:src">@drawable/abc_ic_menu_moreoverflow_mtrl_alpha</item>
    </style>

6 返回按钮

getSupportActionBar().setDisplayHomeAsUpEnabled(true);   
  • 监听返回按钮1
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "返回", Toast.LENGTH_SHORT).show();
}
});
  • 监听返回按钮2
@Override
     public boolean onOptionsItemSelected(MenuItem item) {
         switch (item.getItemId()) {
             case android.R.id.home:
              //
                 return true;
         }
         return false;
     }

7 自定义左侧按钮和中间文字

<?xml version="1.0" encoding="utf-8"?>
<!--

app:title="title"
-->
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/id_toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="?colorPrimary"
    android:minHeight="?attr/actionBarSize"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:visibility="gone"
    app:popupTheme="@style/ThemeOverlay.AppCompat"
    >
    <LinearLayout
        android:id="@+id/id_ll_toolbar_left"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:orientation="horizontal"
        >
        <ImageView
            android:id="@+id/id_toolbar_left_iv"
            android:layout_width="24dp"
            android:layout_height="24dp"
            />

        <TextView
            android:id="@+id/id_toolbar_left_tv"
            android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle"
            android:textColor="@color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="?attr/selectableItemBackground"
            android:text="地区"
            />
    </LinearLayout>

    <!--toolbar  默认不显示 android:visibility="gone" 定义了app:title="XXX" 就行  无需再配置自身文字-->
    <TextView
        android:id="@+id/id_toolbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:lines="1"
        android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title"
        android:visibility="gone"
        />
</android.support.v7.widget.Toolbar>

7 参考文档

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 196,165评论 5 462
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 82,503评论 2 373
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 143,295评论 0 325
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 52,589评论 1 267
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 61,439评论 5 358
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 46,342评论 1 273
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 36,749评论 3 387
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 35,397评论 0 255
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 39,700评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 34,740评论 2 313
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 36,523评论 1 326
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 32,364评论 3 314
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 37,755评论 3 300
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,024评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 30,297评论 1 251
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 41,721评论 2 342
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 40,918评论 2 336

推荐阅读更多精彩内容