在使用過程中,
1 TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.ContactListItemView); 2 mPreferredHeight = a.getDimensionPixelSize( 3 R.styleable.ContactListItemView_list_item_height, 0); 4 mActivatedBackgroundDrawable = a.getDrawable( 5 R.styleable.ContactListItemView_activated_background); 6 mHorizontalDividerDrawable = a.getDrawable( 7 R.styleable.ContactListItemView_list_item_divider);
發現mHorizontalDividerDrawable一直為空。
查找到在attrs.xml里定義了
<declare-styleable name="ContactListItemView"> .... <attr name="list_item_divider" format="reference"/> ... </declare-styleable>
最后發現該引用出現在ActivityTheme里面
<style name="PeopleTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar"> ....... <item name="list_item_divider">?android:attr/listDivider</item> ....... </style>
相關資料如下
做Android布局是件很享受的事,這得益於他良好的xml方式。使用xml可以快速有效的為軟件定義界面。可是有時候我們總感覺官方定義的一些基本組件不夠用,自定義組件就不可避免了。那么如何才能做到像官方提供的那些組件一樣用xml來定義他的屬性呢?現在我們就來討論一下他的用法。
一、在res/values文件下定義一個attrs.xml文件,代碼如下:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="ToolBar">
<attr name="buttonNum" format="integer"/>
<attr name="itemBackground" format="reference|color"/>
</declare-styleable>
</resources>
二、在布局xml中如下使用該屬性:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:toolbar="http://schemas.android.com/apk/res/cn.zzm.toolbar"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<cn.zzm.toolbar.ToolBar android:id="@+id/gridview_toolbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/control_bar"
android:gravity="center"
toolbar:buttonNum="5"
toolbar:itemBackground="@drawable/control_bar_item_bg"/>
</RelativeLayout>
三、在自定義組件中,可以如下獲得xml中定義的值:
TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.ToolBar);
buttonNum = a.getInt(R.styleable.ToolBar_buttonNum, 5);
itemBg = a.getResourceId(R.styleable.ToolBar_itemBackground, -1);a.recycle();
就這么簡單的三步,即可完成對自定義屬性的使用。
*********************************************************************
好了,基本用法已經講完了,現在來看看一些注意點和知識點吧。
首先來看看attrs.xml文件。
該文件是定義屬性名和格式的地方,需要用<declare-styleable name="ToolBar"></declare-styleable>包圍所有屬性。其中name為該屬性集的名字,主要用途是標識該屬性集。那在什么地方會用到呢?主要是在第三步。看到沒?在獲取某屬性標識時,用到"R.styleable.ToolBar_buttonNum",很顯然,他在每個屬性前面都加了"ToolBar_"。
在來看看各種屬性都有些什么類型吧:string , integer , dimension , reference , color , enum......
前面幾種的聲明方式都是一致的,例如:<attr name="buttonNum" format="integer"/>。
只有enum是不同的,用法舉例:
<attr name="testEnum">
<enum name="fill_parent" value="-1"/>
<enum name="wrap_content" value="-2"/>
</attr>
如果該屬性可同時傳兩種不同的屬性,則可以用“|”分割開即可。
讓我們再來看看布局xml中需要注意的事項。
首先得聲明一下:xmlns:toolbar=http://schemas.android.com/apk/res/cn.zzm.toolbar
注意,“toolbar”可以換成其他的任何名字,后面的url地址必須最后一部分必須用上自定義組件的包名。自定義屬性了,在屬性名前加上“toolbar”即可。
最后來看看java代碼中的注意事項。
在自定義組件的構造函數中,用
TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.ToolBar);
來獲得對屬性集的引用,然后就可以用“a”的各種方法來獲取相應的屬性值了。這里需要注意的是,如果使用的方法和獲取值的類型不對的話,則會返回默認值。因此,如果一個屬性是帶兩個及以上不用類型的屬性,需要做多次判斷,知道讀取完畢后才能判斷應該賦予何值。當然,在取完值的時候別忘了回收資源哦!
自定義屬性數據類型簡介:
一、reference:參考指定Theme中資源ID。
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="label" format="reference" > </declare-styleable> |
2.使用:
1 |
<Buttonzkx:label="@string/label" > |
二、Color:顏色
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="textColor" format="color" /> </declare-styleable> |
2.使用:
1 |
<Button zkx:textColor="#ff0000"/> |
三、boolean:布爾值
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="isVisible" format="boolean" /> </declare-styleable> |
2.使用:
1 |
<Button zkx:isVisible="false"/> |
四、dimension:尺寸值
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="myWidth" format="dimension" /> </declare-styleable> |
2.使用:
1 |
<Button zkx:myWidth="100dip"/> |
五、float:浮點型
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="fromAlpha" format="float" /> </declare-styleable> |
2.使用:
1 |
<alpha zkx:fromAlpha="0.3"/> |
六、integer:整型
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="frameDuration" format="integer" /> </declare-styleable> |
2.使用:
1 |
<animated-rotate zkx:framesCount="22"/> |
七、string:字符串
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="Name" format="string" /> </declare-styleable> |
2.使用:
1 |
<rotate zkx:pivotX="200%"/> |
八、fraction:百分數
1.定義:
1 2 3 |
<declare-styleable name="My"> <attr name="pivotX" format="fraction" /> </declare-styleable> |
2.使用:
1 |
<rotate zkx:Name="My name is zhang kun xiang"/> |
九、enum:枚舉
1.定義:
1 2 3 4 5 |
<declare-styleable name="My"> <attr name="language"> <enum name="English" value="1"/> </attr> </declare-styleable> |
2.使用:
1 |
<Button zkx:language="English"/> |
十、flag:位或運算
1.定義:
1 2 3 4 5 6 |
<declare-styleable name="My"> <attr name="windowSoftInputMode"> <flag name="stateUnspecified" value="1" /> <flag name = "adjustNothing" value = "0x30" /> </attr> </declare-styleable> |
2.使用:
1 |
<activity android:windowSoftInputMode="stateUnspecified | adjustNothing"> |
屬性定義時可以指定多種類型值:
1 2 3 |
<declare-styleable name = "名稱"> <attr name="background" format="reference|color" /> </declare-styleable> |
使用:
1 |
<ImageView android:background = "@drawable/圖片ID|#00FF00"/> |