1. 程式人生 > >Android自定義控制元件封裝之自定義屬性的實現

Android自定義控制元件封裝之自定義屬性的實現

在開發中有時候我們需要去自定義一些組合控制元件,而在使用過程中,又想要自己的組合控制元件能有原生控制元件那樣可以在xml中使用屬性控制,那麼我們就需要去自定義一些屬性了

1:首先在values/attrs.xml中進行屬性的定義

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="MyAppTitle">
        <attr name="TitleText" format="string"/>
        <attr name="LeftText" format="string"/>
        <attr name="RightText" format="string"/>
    </declare-styleable>
    
</resources>

2:在定義好這些屬性後,就需要在自己自定義的類中進行獲取和操作了

public MyAppTitle(Context context, AttributeSet attrs) {
    super(context, attrs);
TypedArray ta = context.obtainStyledAttributes(attrs,R.styleable.MyAppTitle);
mLeftText = ta.getString(R.styleable.MyAppTitle_LeftText);
mTitleText = ta.getString(R.styleable.MyAppTitle_TitleText
); mRightText = ta.getString(R.styleable.MyAppTitle_RightText); Log.e("Fizzer",mLeftText+mRightText+mTitleText); }

3:接下來就可以在xml檔案佈局中進行使用了
<com.fizzer.anbangproject_dahuo_test.Widget.MyAppTitle
android:id="@+id/viewMyAppTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
fizzer:TitleText="標題" fizzer:LeftText="左邊" fizzer:RightText="右邊"/>
還有一點要注意的就是,別忘了在根佈局中進行名稱空間的宣告
xmlns:fizzer="http://schemas.android.com/apk/res-auto"
名稱空間的名字是可以自定義的,比如文中的“fizzer”,開發者可以自己自行定義,但是在xml檔案使用中一定要使用自己定義的命名

4:最後說一點的就是,在attrs檔案中styleable中的命名是可以自定義的,但是為了在書寫佈局檔案時有屬性的提示功能,所以最好還是保持自定義控制元件的類名與styleable的命名一致,當然,Google也支援和鼓勵開發者使用對應的類名來作為styleable的命名