您好,登錄后才能下訂單哦!
<SPAN COLOR: ">一.自定義控件的選中效果
在drawable文件夾下新建selector類型的xml文件(右鍵drawable,選擇新建android xml file),文件名任意,內容如:
<?xml version="1.0" encoding="utf-8">
xmlns:android="http://schemas.android.com/apk/res/android">
?xml>
/*state_focused表示是否是非觸摸狀態,true表示是非觸摸狀態。其中android:drawable可以引用drawable文件夾下其它資源文件,比如shape資源,用來實現控件常規、按下、選中等樣式*。
使用方法:在布局文件中,控件的背景屬性中引用這些資源,以下類同*/
<SPAN COLOR: ">二.自定義控件的外觀
新建shape類型的xml文件,如:
<?xml version="1.0" encoding="utf-8">
?xml>
android:width="1px"
android:color="@color/color_black" />
android:bottom="3dp"
android:left="3dp"
android:right="3dp"
android:top="3dp" />
android:color="@color/color_white"
/>
android:bottomLeftRadius="0dp"
android:bottomRightRadius="0dp"
android:radius="1dp"
android:topLeftRadius="@dimen/indicator_corner_radius"
android:topRightRadius="@dimen/indicator_corner_radius" />
/*
stroke表示描邊
padding內邊距
solid表示實體,即控件的整體區域
corners表示圓角
*/
<SPAN COLOR: ">三.多樣式疊加
新建layer-list類型的xml文件,如:
<?xml version="1.0" encoding="UTF-8">
?xml>
android:width="1dp"
android:color="@color/stroke" />
android:scaleGravity="center"
android:scaleHeight="5dp"
android:scaleWidth="5dp" />
<SPAN COLOR: ">綜合示例:
<?xml version="1.0" encoding="UTF-8">
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content" >
<gradient android:startColor="#ff707070"
android:centerColor="#ff707070" android:endColor="#ff707070"
android:centerY="1" android:angle="270" />
?xml>
android:startColor="#ffaaa9a7"
android:centerColor="#ffaaa9a7"
android:centerY="1"
android:endColor="#ffaaa9a7"
android:angle="270"
/>
<gradient android:startColor="#ffA90101"
android:centerColor="#ffA90101" android:endColor="#ffA90101"
android:centerY="1" android:angle="270" />
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。