Android自定義View中attrs.xml的實例詳解
Android自定義View中attrs.xml的實例詳解
我們在自定義View的時候通常需要先完成attrs.xml文件
在values中定義一個attrs.xml 然后添加相關(guān)屬性
這一篇先詳細(xì)介紹一下attrs.xml的屬性。
<?xml version="1.0" encoding="utf-8"?> <resources> //自定義屬性名,定義公共屬性 <attr name="titleText" format="string"/> <attr name="titleTextSize" format="dimension"/> <attr name="titleTextColor" format="color"/> <attr name="image" format="reference"/> <attr name="imageScaleType" > <enum name="fillXY" value="0"/> <enum name="center" value="1"/> </attr> //自定義控件的主題樣式 <declare-styleable name="CustomImageView"> <attr name="titleText" /> <attr name="titleTextSize" /> <attr name="titleTextColor" /> <attr name="image" /> <attr name="imageScaleType" /> </declare-styleable> </resources>
reference:參考某一資源ID。
定義:
<declare-styleable name = "名稱"> <attr name = "background" format = "reference" /> </declare-styleable>
使用:
<ImageView android:layout_width = "42dip" android:layout_height = "42dip" android:background = "@drawable/圖片ID" />
color:顏色值
定義:
<declare-styleable name = "名稱"> <attr name = "textColor" format = "color" /> </declare-styleable>
使用:
<TextView android:layout_width = "42dip" android:layout_height = "42dip" android:textColor = "#00FF00" />
boolean:布爾值
定義:
<declare-styleable name = "名稱"> <attr name = "focusable" format = "boolean" /> </declare-styleable>
使用:
<Button android:layout_width = "42dip" android:layout_height = "42dip" android:focusable = "true"/>
dimension:尺寸值
定義:
<declare-styleable name = "名稱"> <attr name = "layout_width" format = "dimension" /> </declare-styleable>
使用:
<Button android:layout_width = "42dip" android:layout_height = "42dip" />
float:浮點值
定義:
<declare-styleable name = "AlphaAnimation"> <attr name = "fromAlpha" format = "float" /> <attr name = "toAlpha" format = "float" /> </declare-styleable>
使用:
<alpha android:fromAlpha = "1.0" android:toAlpha = "0.7" />
integer:整型值
定義:
<declare-styleable name="RotateDrawable"> <attr name = "visible" /> <attr name = "fromDegrees" format = "float" /> <attr name = "toDegrees" format = "float" /> <attr name = "pivotX" format = "fraction" /> <attr name = "pivotY" format = "fraction" /> <attr name = "drawable" /> </declare-styleable>
使用:
<rotate xmlns:android = "http://schemas.android.com/apk/res/android" android:interpolator = "@anim/動畫ID" android:fromDegrees = "0" android:toDegrees = "360" android:pivotX = "200%" android:pivotY = "300%" android:duration = "5000" android:repeatMode = "restart" android:repeatCount = "infinite" />
enum:枚舉值
定義:
<declare-styleable name="名稱"> <attr name="orientation"> <enum name="horizontal" value="0" /> <enum name="vertical" value="1" /> </attr> </declare-styleable>
使用:
<LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:orientation = "vertical" android:layout_width = "fill_parent" android:layout_height = "fill_parent" > </LinearLayout>
flag:位或運算
<declare-styleable name="名稱"> <attr name="windowSoftInputMode"> <flag name = "stateUnspecified" value = "0" /> <flag name = "stateUnchanged" value = "1" /> <flag name = "stateHidden" value = "2" /> <flag name = "stateAlwaysHidden" value = "3" /> <flag name = "stateVisible" value = "4" /> <flag name = "stateAlwaysVisible" value = "5" /> <flag name = "adjustUnspecified" value = "0x00" /> <flag name = "adjustResize" value = "0x10" /> <flag name = "adjustPan" value = "0x20" /> <flag name = "adjustNothing" value = "0x30" /> </attr> lt;/declare-styleable>
使用:
<activity android:name = ".StyleAndThemeActivity" android:label = "@string/app_name" android:windowSoftInputMode = "stateUnspecified | stateUnchanged | stateHidden"> <intent-filter> <action android:name = "android.intent.action.MAIN" /> <category android:name = "android.intent.category.LAUNCHER" /> </intent-filter> </activity>
屬性定義時可以指定多種類型值
定義:
<declare-styleable name = "名稱"> <attr name = "background" format = "reference|color" /> </declare-styleable>
使用:
<ImageView android:layout_width = "42dip" android:layout_height = "42dip" android:background = "@drawable/圖片ID|#00FF00" />
以上就是關(guān)于Android 自定義 View 對attrs.xml的詳細(xì)介紹,如有疑問請留言或者到本站社區(qū)交流,共同 進(jìn)步,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關(guān)文章
Android 數(shù)據(jù)庫打包隨APK發(fā)布的實例代碼
有些時候我們的軟件用到SQLite數(shù)據(jù)庫,這個時候怎么把一個做好的數(shù)據(jù)庫打包進(jìn)我們的APK呢2013-10-10Android雙向選擇控件DoubleSeekBar使用詳解
這篇文章主要為大家詳細(xì)介紹了Android雙向選擇控件DoubleSeekBar的使用方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2020-08-08Android ConstraintLayout約束布局使用實例介紹
ConstraintLayout是Google在Google I/O 2016大會上發(fā)布的一種新的布局容器(ViewGroup),它支持以靈活的方式來放置子控件和調(diào)整子控件的大小,下面這篇文章主要給大家介紹了關(guān)于Android中ConstraintLayout約束布局詳細(xì)解析的相關(guān)資料,需要的朋友可以參考下2022-10-10Android選擇圖片或視頻進(jìn)行循環(huán)播放
這篇文章主要為大家詳細(xì)介紹了Android選擇圖片或視頻進(jìn)行循環(huán)播放,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-10-10