Material Design Components之MaterialButton的使用

一:導(dǎo)包

implementation 'com.google.android.material:material:1.0.0'

二:App主題

當(dāng)APP的主題是Theme.AppCompat系列時(shí)是不能使用com.google.android.material.button.MaterialButton控件的,否則匯報(bào)一個(gè)異常:

 Caused by: java.lang.IllegalArgumentException: This component requires that you specify a valid TextAppearance attribute. Update your app theme to inherit from Theme.MaterialComponents (or a descendant).
        at com.google.android.material.internal.ThemeEnforcement.checkTextAppearance(ThemeEnforcement.java:170)

意思是APP的主題只能使用繼承自Theme.MaterialComponents系列的艰赞,其實(shí)給對(duì)應(yīng)的Activity添加也是沒有問題的郁轻。

android:theme="@style/Theme.MaterialComponents.Light"

三:使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <com.google.android.material.button.MaterialButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Default" />

    <com.google.android.material.button.MaterialButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:enabled="false"
        android:text="Disable" />

    <com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.UnelevatedButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="UnelevatedButton" />

    <com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.OutlinedButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="OutlinedButton" />

    <com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.TextButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextButton" />

    <com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.Icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="IconButton"
        app:icon="@drawable/ic_camera" />

</LinearLayout>
MaterialButton.png
  • 其中按鈕的填充色是由<item name="colorPrimary">@color/colorPrimary</item>決定的叉存,如果同時(shí)給定了<item name="colorAccent">@color/colorAccent</item>那么按鈕的填充色會(huì)是colorAccent革答;對(duì)于沒有填充色的按鈕,colorPrimary決定了他的文字顏色仿畸,如果同時(shí)給定了colorAccent顏色惶岭,那么文字的顏色會(huì)是colorAccent。
  • 按鈕按下周圍會(huì)有一圈的陰影渗磅,該陰影延伸到了按鈕的邊界之外嚷硫,所以包裹按鈕的ViewGroup應(yīng)該設(shè)置android:clipToPadding=“false”,以防按鈕陰影被父邊界剪裁掉始鱼。

四:樣式

一:默認(rèn)樣式style="@style/Widget.MaterialComponents.Button":有填充色仔掸、有陰影;

<com.google.android.material.button.MaterialButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Default" />

    <com.google.android.material.button.MaterialButton
        android:layout_width="wrap_content"
        style="@style/Widget.MaterialComponents.Button"
        android:layout_height="wrap_content"
        android:text="Default" />

二:style="@style/Widget.MaterialComponents.Button.UnelevatedButton":有填充色医清、沒有陰影起暮;

<com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.UnelevatedButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="UnelevatedButton" />

三:style="@style/Widget.MaterialComponents.Button.OutlinedButton":透明背景、彩色文字会烙、有輪廓负懦,沒有陰影筒捺;

<com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.OutlinedButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="OutlinedButton" />

四:style="@style/Widget.MaterialComponents.Button.TextButton":透明背景、彩色文字纸厉、沒有輪廓系吭,沒有陰影;

<com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.TextButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="TextButton" />

五:style="@style/Widget.MaterialComponents.Button.Icon":有填充色颗品、有陰影肯尺、有一個(gè)小圖標(biāo);

<com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.Icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="IconButton"
        app:icon="@drawable/ic_camera" />

五:特有屬性

<com.google.android.material.button.MaterialButton
        style="@style/Widget.MaterialComponents.Button.Icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Icon Button"
        app:icon="@drawable/ic_camera"
        app:iconGravity="textStart"
        app:iconSize="24dp"
        app:iconPadding="16dp"
        app:cornerRadius="40dp"
        app:iconTint="#0F0"
        app:strokeColor="#0F0"
        app:strokeWidth="2dp"
        app:rippleColor="#00F"/>
  • app:icon="@drawable/ic_camera" 圖標(biāo)
  • app:iconGravity="textStart" 圖標(biāo)的位置
  • app:iconSize="24dp" 圖標(biāo)的大小
  • app:iconPadding="16dp" 圖標(biāo)與文字的距離
  • app:cornerRadius="40dp" 按鈕圓角半徑
  • app:iconTint="#0F0" 圖標(biāo)著色
  • app:strokeColor="#0F0" 輪廓的顏色
  • app:strokeWidth="2dp" 輪廓的線寬
  • app:rippleColor="#00F" 按壓水波紋的顏色


    button.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末躯枢,一起剝皮案震驚了整個(gè)濱河市则吟,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌锄蹂,老刑警劉巖氓仲,帶你破解...
    沈念sama閱讀 207,113評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異败匹,居然都是意外死亡寨昙,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評(píng)論 2 381
  • 文/潘曉璐 我一進(jìn)店門掀亩,熙熙樓的掌柜王于貴愁眉苦臉地迎上來舔哪,“玉大人,你說我怎么就攤上這事槽棍∽皆椋” “怎么了?”我有些...
    開封第一講書人閱讀 153,340評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵炼七,是天一觀的道長(zhǎng)缆巧。 經(jīng)常有香客問我,道長(zhǎng)豌拙,這世上最難降的妖魔是什么陕悬? 我笑而不...
    開封第一講書人閱讀 55,449評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮按傅,結(jié)果婚禮上捉超,老公的妹妹穿的比我還像新娘。我一直安慰自己唯绍,他們只是感情好拼岳,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,445評(píng)論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著况芒,像睡著了一般惜纸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,166評(píng)論 1 284
  • 那天耐版,我揣著相機(jī)與錄音祠够,去河邊找鬼。 笑死椭更,一個(gè)胖子當(dāng)著我的面吹牛哪审,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播虑瀑,決...
    沈念sama閱讀 38,442評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼滴须!你這毒婦竟也來了舌狗?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤扔水,失蹤者是張志新(化名)和其女友劉穎痛侍,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體魔市,經(jīng)...
    沈念sama閱讀 43,601評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡主届,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,066評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了待德。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片君丁。...
    茶點(diǎn)故事閱讀 38,161評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖将宪,靈堂內(nèi)的尸體忽然破棺而出绘闷,到底是詐尸還是另有隱情,我是刑警寧澤较坛,帶...
    沈念sama閱讀 33,792評(píng)論 4 323
  • 正文 年R本政府宣布印蔗,位于F島的核電站,受9級(jí)特大地震影響丑勤,放射性物質(zhì)發(fā)生泄漏华嘹。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,351評(píng)論 3 307
  • 文/蒙蒙 一法竞、第九天 我趴在偏房一處隱蔽的房頂上張望耙厚。 院中可真熱鬧,春花似錦爪喘、人聲如沸颜曾。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)泛豪。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間诡曙,已是汗流浹背臀叙。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留价卤,地道東北人劝萤。 一個(gè)月前我還...
    沈念sama閱讀 45,618評(píng)論 2 355
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像慎璧,于是被迫代替她去往敵國(guó)和親床嫌。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,916評(píng)論 2 344

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

  • 眾所周知Material Design(材質(zhì)設(shè)計(jì))是Google在2014年I/O大會(huì)上發(fā)布的一種新的設(shè)計(jì)規(guī)范胸私。一...
    _SOLID閱讀 56,966評(píng)論 49 324
  • 前言:近來學(xué)習(xí)了Android Material Design 兼容庫(kù)厌处,為了把這個(gè)弄懂,才有了這篇博客岁疼,這里先推薦...
    mecury閱讀 5,581評(píng)論 3 21
  • Material Design常用的主題 Api >= 21@android:style/Theme.Materi...
    王志強(qiáng)_9380閱讀 578評(píng)論 0 0
  • MaterialDesign是一套全新的界面設(shè)計(jì)語(yǔ)言,包含視覺,運(yùn)動(dòng),互動(dòng)效果等特性. Design Suppor...
    小徐andorid閱讀 942評(píng)論 0 9
  • 2019雜感《玄幻》阔涉,2019年我決定不再在朋友圈曬讀書了(我一直以為朋友圈曬讀書跟土豪曬金鏈子炫富沒太大區(qū)別[偷...
    地中海的風(fēng)_51b9閱讀 493評(píng)論 0 2