【Android 自定義 View】之自定義屬性相關(guān)

今天總結(jié)一下自定義 View 時(shí)自定義屬性的相關(guān)。

定義

在 res/values 中創(chuàng)建 attrs.xml 文件。
示例代碼:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="custom_color" format="color"/>

    <declare-styleable name="CustomAttribute">
        <attr name="custom_radius" format="dimension"/>
        <attr name="custom_color"/>
    </declare-styleable>
</resources>
  • attr 標(biāo)簽定義一個(gè)屬性维费,name 是屬性的名字,不能和其它屬性的名字沖突,format 是屬性的格式裳凸,可以用給一個(gè)屬性指定多種格式;
  • declare-styleable 標(biāo)簽定義一個(gè)屬性組劝贸,可以在里面定義屬性姨谷,也可以直接引用 resource 標(biāo)簽下面定義的屬性,區(qū)別就是不用寫 format映九;

格式

自定義屬性共有10種 format

  1. integer 整型值梦湘;
  2. float 浮點(diǎn)值;
  3. string 字符串件甥;
  4. boolean 布爾值捌议;
  5. dimension 尺寸值;
  6. color 顏色值引有;
  7. fraction 百分?jǐn)?shù)瓣颅;
  8. enum 枚舉值;
  9. flag 位或運(yùn)算
  10. reference 引用資源 ID

獲取

屬性的獲取有兩種方式:

獲取 resource 下的 attr

第一種是直接獲取 resource 標(biāo)簽下定義的 attr轿曙。
每一個(gè) attr 都會(huì)在 R 文件的 attr 類中生成一個(gè)對(duì)應(yīng) ID弄捕,我們可以根據(jù)這個(gè) ID 獲取自己定義的屬性,也可以獲取系統(tǒng)定義的屬性导帝。
通常是在 View 的構(gòu)造方法中獲仁匚健:

    //獲取自定義屬性
    int[] customAttrs = {R.attr.custom_color};
    TypedArray a = context.obtainStyledAttributes(attrs, customAttrs);
    int color = a.getColor(0, Color.WHITE);
    a.recycle();
    //獲取系統(tǒng)定義屬性
    int[] customAttrs = {android.R.attr.color};
    TypedArray a = context.obtainStyledAttributes(attrs, customAttrs);
    mColor = a.getColor(0, mColor);
    a.recycle();

獲取 declare-styleable 下的 attr

更常用的是獲取 declare-styleable 屬性集中的屬性。
當(dāng)定義 declare-styleable 時(shí)您单,R 文件在 styleable 內(nèi)部類中自動(dòng)生成一個(gè) int[] 常量斋荞,數(shù)組中的元素是 declare-styleable 屬性集中的屬性的 ID,這樣就不需要自己再定義 int[] 了虐秦,數(shù)組中的每一個(gè)元素也會(huì)生成一個(gè) ID 指向數(shù)組中的元素平酿,ID 格式為:屬性集名_屬性名,直接通過屬性 ID 獲取對(duì)應(yīng) attr悦陋。

TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomAttribute);
    mColor = a.getColor(R.styleable.CustomAttribute_custom_color, mColor);
    mRadius = a.getDimension(R.styleable.CustomAttribute_custom_radius, mRadius);
    a.recycle();

也可以獲取系統(tǒng)中定義的屬性蜈彼,這里 android:color 變成了 android_color

//把系統(tǒng)定義的屬性放在屬性集中
<declare-styleable name="CustomAttribute">
    <attr name="android:color"/>
</declare-styleable>
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CustomAttribute);
mColor = a.getColor(R.styleable.CustomAttribute_android_color, mColor);
a.recycle();

Context#obtainStyledAttributes

上面獲取屬性的方式是調(diào)用了 Context 類的 obtainStyledAttributes 方法,該方法有四個(gè)重載方法:

//從 Theme 中獲取屬性
obtainStyledAttributes(int[] attrs)
//從 style 中獲取屬性
obtainStyledAttributes(int resid, int[] attrs)
//從 layout 文件中獲取屬性
obtainStyledAttributes(AttributeSet set, int[] attrs)
//從 layout 文件中獲取屬性
obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr,int defStyleRes)

參數(shù)中的 int[] attrs 就是要獲取的屬性的名稱俺驶,前面說過這個(gè)參數(shù)一般為 declare-styleable 在 R 文件的 styleable 類中生成的 ID幸逆。

obtainStyledAttributes(int[] attrs)

一個(gè)參數(shù)的方法是從應(yīng)用的主題中獲取屬性,如果想從主題中獲取我們自定義的屬性,就需要在應(yīng)用的主題中聲明自定義的屬性值还绘。
加入定義了如下屬性:

<declare-styleable name="CustomAttribute">
    <attr name="custom_color" format="color"/>
    <attr name="custom_radius" format="dimension"/>
</declare-styleable>

那么在應(yīng)用的主題中:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!--直接在主題中指定-->
    <item name="custom_color">#FF0000</item>
    <item name="custom_radius">100dp</item>
</style>
obtainStyledAttributes(int resid, int[] attrs)

該方法是從指定的 style 中獲取楚昭,參數(shù) resid 就是 style 在 R 文件中生成的 ID,我們需要在定義的 style 中聲明相應(yīng)的屬性值:

<style name="CustomTheme">
    <item name="custom_color">#00FF00</item>
    <item name="custom_radius">10dp</item>
</style>
obtainStyledAttributes(AttributeSet set, int[] attrs)

該方法是最常用的拍顷,是從 layout 文件中獲取抚太,AttributeSet 類型的參數(shù)是從 xml 文件中解析出來的控件屬性集合,也包括控件應(yīng)用的 style 中聲明的屬性昔案。

obtainStyledAttributes(AttributeSet set, int[] attrs, int defStyleAttr,int defStyleRes)

第一個(gè)參數(shù)是從 xml 文件中解析出來的控件屬性集合尿贫,第三個(gè)參數(shù)是 style.xml 文件中定義的某一 Theme 的 ID,第四個(gè)參數(shù)是 style.xml 中定義的某一 Style 的 ID踏揣。
該方法首先從第一個(gè)參數(shù) AttributeSet 也就是 layout 文件中獲取屬性帅霜,如果沒有取到屬性,那么從第三個(gè)參數(shù) defStyleAttr 指定的主題中獲取呼伸,如果還沒有取到身冀,那么從第四個(gè)參數(shù) defStyleRes 指定的 style 中獲取,如果還沒有獲取到括享,那么返回的結(jié)果就為 null 了搂根。

TypedArray

Context 類的 obtainStyledAttributes 方法實(shí)質(zhì)調(diào)用的都是 Resources 類的內(nèi)部類 Theme 類的對(duì)應(yīng)的 obtainStyledAttributes 方法,最終調(diào)用的都是 ResourcesImpl.ThemeImpl 類的 obtainStyledAttributes 方法铃辖,這里不作討論剩愧,該方法返回的是一個(gè) TypedArray 對(duì)象,TypedArray 類就是一個(gè)獲取到的屬性值數(shù)組的容器娇斩,該類提供了一系列獲取屬性值的方法:

//獲取屬性的數(shù)量
public int getIndexCount()
//獲取屬性名
public int getIndex (int at)
//獲取屬性類型
public int getType (int index)
//在使用之后要進(jìn)行回收才能重用
public void recycle ()

public boolean getBoolean (int index, boolean defValue)
public int getColor (int index, int defValue)
publicColorStateList getColorStateList(int index)
public float getDimension (int index, float defValue)
public int getDimensionPixelOffset (int index, int defValue)
public int getDimensionPixelSize (int index, int defValue)
publicDrawable getDrawable(int index)
public float getFloat (int index, float defValue)
public float getFraction (int index, int base, int pbase, float defValue)
public int getInt (int index, int defValue)
public int getInteger (int index, int defValue)
public intgetLayoutDimension(int index,Stringname)
public int getResourceId (int index, int defValue)
publicString (int index)
publicCharSequencegetText(int index)
publicCharSequence[]getTextArray(int index)

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末仁卷,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子犬第,更是在濱河造成了極大的恐慌锦积,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,348評(píng)論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件歉嗓,死亡現(xiàn)場離奇詭異丰介,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)鉴分,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門哮幢,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人志珍,你說我怎么就攤上這事橙垢。” “怎么了伦糯?”我有些...
    開封第一講書人閱讀 156,936評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵柜某,是天一觀的道長点额。 經(jīng)常有香客問我,道長莺琳,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,427評(píng)論 1 283
  • 正文 為了忘掉前任载慈,我火速辦了婚禮惭等,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘办铡。我一直安慰自己辞做,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評(píng)論 6 385
  • 文/花漫 我一把揭開白布寡具。 她就那樣靜靜地躺著秤茅,像睡著了一般。 火紅的嫁衣襯著肌膚如雪童叠。 梳的紋絲不亂的頭發(fā)上框喳,一...
    開封第一講書人閱讀 49,785評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音厦坛,去河邊找鬼五垮。 笑死,一個(gè)胖子當(dāng)著我的面吹牛杜秸,可吹牛的內(nèi)容都是我干的放仗。 我是一名探鬼主播,決...
    沈念sama閱讀 38,931評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼撬碟,長吁一口氣:“原來是場噩夢啊……” “哼诞挨!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起呢蛤,我...
    開封第一講書人閱讀 37,696評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤惶傻,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后其障,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體达罗,經(jīng)...
    沈念sama閱讀 44,141評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評(píng)論 2 327
  • 正文 我和宋清朗相戀三年静秆,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了粮揉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,625評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡抚笔,死狀恐怖扶认,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情殊橙,我是刑警寧澤辐宾,帶...
    沈念sama閱讀 34,291評(píng)論 4 329
  • 正文 年R本政府宣布狱从,位于F島的核電站,受9級(jí)特大地震影響叠纹,放射性物質(zhì)發(fā)生泄漏季研。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評(píng)論 3 312
  • 文/蒙蒙 一誉察、第九天 我趴在偏房一處隱蔽的房頂上張望与涡。 院中可真熱鬧,春花似錦持偏、人聲如沸驼卖。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽酌畜。三九已至,卻和暖如春卿叽,著一層夾襖步出監(jiān)牢的瞬間桥胞,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評(píng)論 1 265
  • 我被黑心中介騙來泰國打工考婴, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留埠戳,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,324評(píng)論 2 360
  • 正文 我出身青樓蕉扮,卻偏偏與公主長得像整胃,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子喳钟,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容