Android 自定義Button控件實現(xiàn)按鈕點擊變色
效果圖如下所示:
一、shape 樣式:(在drawable新建--》new--》Drawable resource file 在父級標(biāo)簽selector添加Item )
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true"> <shape android:shape="rectangle"> <solid android:color="#73c4f3" /> <stroke android:width="2dp" android:color="#ffffff" /> <corners android:radius="20dp" /> <padding android:bottom="5dp" android:left="10dp" android:right="10dp" android:top="5dp" /> <gradient android:angle="270" android:endColor="#8accf2" android:startColor="#8accf2" android:type="sweep" /> </shape> <shape> <solid android:color="#3fb3f6" /> <stroke android:width="2dp" android:color="#ffffff" /> <corners android:radius="20dp" /> <padding android:bottom="5dp" android:left="10dp" android:right="10dp" android:top="5dp" /> </shape> </item> </selector>
二、style 樣式:
<style name="rectangle"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">wrap_content</item> <item name="android:textSize">15sp</item> <item name="android:textColor">#ffffff</item> <item name="android:background">@drawable/buttonclickstyle</item> </style>
三、Button控件調(diào)用style樣式:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.ly.blogtest.MainActivity"> <Button android:id="@+id/button" style="@style/rectangle" android:text="@string/btn1" /> </RelativeLayout>
----------------------------------按鈕點擊變色-----------------------------------------------------
----------------------------------item屬性標(biāo)記------------------------------
android:state_pressed 是否按下,如一個按鈕觸摸或者點擊。
android:state_focused 是否取得焦點,比如用戶選擇了一個文本框。
android:state_hovered 光標(biāo)是否懸停,通常與focused state相同,它是4.0的新特性
android:state_selected 被選中,它與focus state并不完全一樣,如一個list view 被選中的時候,它里面的各個子組件可能通過方向鍵,被選中了。
android:state_checkable 組件是否能被check。如:RadioButton是可以被check的。
android:state_checked 被checked了,如:一個RadioButton可以被check了。
android:state_enabled 能夠接受觸摸或者點擊事件
android:state_activated 被激活
android:state_window_focused
應(yīng)用程序是否在前臺,當(dāng)有通知欄被拉下來或者一個對話框彈出的時候應(yīng)用程序就不在前臺了
注意:如果有多個item,那么程序?qū)⒆詣訌纳系较逻M(jìn)行匹配,最先匹配的將得到應(yīng)用。(不是通過最佳匹配)
如果一個item沒有任何的狀態(tài)說明,那么它將可以被任何一個狀態(tài)匹配。
----------------------------------item屬性標(biāo)記------------------------------
以上所述是小編給大家介紹的Android 自定義Button控件實現(xiàn)按鈕點擊變色,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
- Android開發(fā)設(shè)置RadioButton點擊效果的方法
- Android 點擊ImageButton時有“按下”的效果的實現(xiàn)
- Android懸浮按鈕點擊返回頂部FloatingActionButton
- Android Button按鈕的四種點擊事件
- Android開發(fā)-之監(jiān)聽button點擊事件的多種方法
- Android中button點擊后字體的變色效果
- Android自定義button點擊效果的兩種方式
- Android開發(fā)之創(chuàng)建可點擊的Button實現(xiàn)方法
- Android實現(xiàn)點擊Button產(chǎn)生水波紋效果
- Android Button點擊事件的四種實現(xiàn)方法
相關(guān)文章
Android使用BottomNavigationBar實現(xiàn)底部導(dǎo)航欄
這篇文章主要為大家詳細(xì)介紹了Android使用BottomNavigationBar實現(xiàn)底部導(dǎo)航欄,具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-02-02Android種使用Notification實現(xiàn)通知管理以及自定義通知欄實例(示例四)
本篇文章主要介紹了Android種使用Notification實現(xiàn)通知管理以及自定義通知欄實例,具有一定的參考價值,需要的朋友可以了解一下。2016-12-12Android基于Glide v4.x的圖片加載進(jìn)度監(jiān)聽
本篇文章主要介紹了基于Glide v4.x的圖片加載進(jìn)度監(jiān)聽的示例代碼,具有一定的參考價值,有興趣的可以了解一下2017-08-08Android常用三方庫混淆規(guī)則整理(小結(jié))
這篇文章主要介紹了Android常用三方庫混淆規(guī)則整理(小結(jié)),小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-07-07Android中操作SQLite數(shù)據(jù)庫快速入門教程
這篇文章主要介紹了Android中操作SQLite數(shù)據(jù)庫快速入門教程,本文講解了數(shù)據(jù)庫基礎(chǔ)概念、Android平臺下數(shù)據(jù)庫相關(guān)類、創(chuàng)建數(shù)據(jù)庫、向表格中添加數(shù)據(jù)、從表格中查詢記錄等內(nèi)容,需要的朋友可以參考下2015-03-03