Android實(shí)現(xiàn)圓角Button按鈕
本文實(shí)例講述了Android開發(fā)圓角Button按鈕實(shí)現(xiàn)過程,分享給大家供大家參考,具體內(nèi)容如下
需求及效果圖:
實(shí)現(xiàn)思路:
1、shape實(shí)現(xiàn)圓角
在drawable新建兩個(gè)xml 文件, 這兩個(gè) xml文件用shape 實(shí)現(xiàn)了圓角效果。
Note:
因?yàn)橐層脩粲邪聪氯サ男Чw驗(yàn), 所有要有兩套圓角圖, 在按下去時(shí)候切換
<!-- res/drawable/button_shape_normal.xml --> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <!-- rounded corner --> <corners android:radius="5dp" /> <solid android:color="@color/orange_normal" /> </shape>
<!-- res/drawable/button_shape_pressed.xml --> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" > <!-- rounded corner --> <corners android:radius="5dp" /> <!-- fill with two colors, and the two colors change softly --> <!-- <gradient android:angle="270" android:startColor="@color/orange_light" android:endColor="@color/orange_normal" android:useLevel="true" /> --> <solid android:color="@color/orange_light" /> </shape>
2、selector實(shí)現(xiàn)按下效果
在 drawable 新建 一個(gè) xml 文件, 用 selector 把剛才 建立的兩個(gè) xml 文件組織起來
<!-- res/drawable/button_shape.xml --> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/button_shape_normal" android:state_pressed="false"/> <item android:drawable="@drawable/button_shape_pressed" android:state_pressed="true"/> </selector>
3、style實(shí)現(xiàn)多個(gè)按鈕復(fù)用
在res/values/styles.xml 里面輸入下面代碼
<style name="SmsButton"> <item name="android:layout_width">0dp</item> <item name="android:layout_weight">1</item> <item name="android:layout_height">wrap_content</item> <item name="android:textSize">20sp</item> <item name="android:background">@drawable/button_shape</item> <item name="android:textColor">@color/white</item> </style>
4、引用圓角按鈕
在 layout/fragment_bomb.xml 里面 用 style 引用
<Button android:id="@+id/fireup" style="@style/SmsButton" android:layout_marginEnd="20dp" android:layout_marginStart="20dp" android:text="@string/fireup" />
可以省去建立style的步驟, 直接在layout里面引用即可。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)Android有所幫助。
相關(guān)文章
Github簡(jiǎn)單易用的?Android?ViewModel?Retrofit框架
這篇文章主要介紹了Github簡(jiǎn)單易用的Android?ViewModel?Retrofit框架,RequestViewMode有自動(dòng)對(duì)LiveData進(jìn)行緩存管理,每個(gè)retrofit api接口復(fù)用一個(gè)livedata的優(yōu)勢(shì)。下文具體詳情,感興趣的小伙伴可以參考一下2022-06-06Android TimePicker 直接輸入的問題解決方案
這篇文章主要介紹了Android TimePicker 直接輸入的問題解決方案的相關(guān)資料,需要的朋友可以參考下2017-04-04掃二維碼下載apk并統(tǒng)計(jì)被掃描次數(shù)
本文主要對(duì)實(shí)現(xiàn)用戶掃描一個(gè)二維碼就能下載APP,并統(tǒng)計(jì)被掃描次數(shù)的方法進(jìn)行詳細(xì)介紹,具有一定的參考作用,下面跟著小編一起來看下吧2017-01-01Android ScreenLockReceiver監(jiān)聽鎖屏功能示例
這篇文章主要介紹了Android ScreenLockReceiver監(jiān)聽鎖屏功能,結(jié)合實(shí)例形式分析了Android監(jiān)聽鎖屏及取消監(jiān)聽功能的具體實(shí)現(xiàn)技巧,需要的朋友可以參考下2017-07-07Android SD卡上文件操作及記錄日志操作實(shí)例分析
這篇文章主要介紹了Android SD卡上文件操作及記錄日志操作的方法,涉及Android針對(duì)SD卡與文件操作的相關(guān)技巧,需要的朋友可以參考下2016-01-01Android藍(lán)牙庫(kù)FastBle的基礎(chǔ)入門使用
這篇文章主要給大家介紹了關(guān)于Android藍(lán)牙庫(kù)FastBle的基礎(chǔ)入門使用的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-07-07Android 中讀取SD卡文件時(shí)拋出NullPointerException錯(cuò)誤解決辦法
這篇文章主要介紹了Android 中讀取SD卡文件時(shí)拋出NullPointerException錯(cuò)誤解決辦法的相關(guān)資料,需要的朋友可以參考下2017-05-05