1. 程式人生 > >Android解決style檔案不能使用自定義屬性

Android解決style檔案不能使用自定義屬性

在自定義view的時候,通常會自定義一些屬性,為了便於統一使用,在style檔案中把自定義屬性賦值。但是我卻在自定義view中,取不到style中設定的值,如果在xml中設定屬性值卻能正常獲取,這是為什麼呢?

在res/attrs中自定義屬性attrs.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="TabButton">
        <attr name="tab_text" format="reference|string"/>
        <attr name="tab_drawable" format="reference"/>
        <attr name="tab_text_color" format="color"/>
        <attr name="tab_text_size" format="dimension"/>
    </declare-styleable>
</resources>

在res/color中新建text_tab_button_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="@color/blue" android:state_pressed="true"/>
    <item android:color="@color/blue" android:state_selected="true"/>
    <item android:color="@color/text_gray"/>
</selector>

在res/values/styles.xml定義:

<resources >
    <style name="style_tab_button">
        <item name="android:layout_width">0dp</item>
        <item name="android:layout_height">match_parent</item>
        <item name="android:layout_weight">1</item>
        <item name="tab_text_size">@dimen/p22</item>
        <item name="tab_text_color">@color/text_tab_button_selector</item>
    </style>
</resources>

在自定義view 中獲取屬性值:

        TypedArray typedArray = getContext().obtainStyledAttributes(attrs,
                R.styleable.TabButton);
        mDrawable = typedArray.getDrawable(R.styleable.TabButton_tab_drawable);
        contentText = typedArray.getString(R.styleable.TabButton_tab_text);
        color = typedArray.getColorStateList(R.styleable.TabButton_tab_text_color); // text多狀態要用ColorStateList
        size = typedArray.getDimensionPixelSize(R.styleable.TabButton_tab_text_size, 30);
        typedArray.recycle();

我一開始的時候獲取不到style中的自定義屬性值,是因為我獲取TypedArray的方法有問題:

TypedArray typedArray = getContext().getResources().obtainAttributes(attrs,
                R.styleable.TabButton);