如何自定義LinearLayout

最近經過看別人代碼和網上搜索,發現如今自定義LinearLayout的方式有兩種。第一種是在擴展的LinearLayout構造函數中使用Inflater加載一個佈局,並從中提取出相關的UI組件進行封裝,造成一個獨立的控件。在使用該控件時,因爲它全部的子元素都是在運行時經過代碼動態建立的,因此該控件只能以一個獨立控件的形式在Layout文件中聲明,例如:android

<com.XX.CustomLayout android:id="@+id/XX" ide

        android:layout_width="XX"函數

        android:layout_height="YY" />佈局

另外一種使用方式是:在自定義控件中聲明它的全部子元素,而後在Layout文件中像使用LinearLayout同樣去進行佈局,不過切記:自定義控件Code中聲明的UI元素必須與Layout文件中聲明的元素保持一致,不然,在代碼中沒法找到對應的控件;最後,在自定義控件的onInflateFinish中經過findViewById將layout中聲明的控件跟代碼中聲明的控件匹配起來,例若有某個自定義控件:

public class CustomLayout extends LinearLayout{
    ListView  mListView; //代碼中聲明的控件spa

    XXXX; //針對UI控件封裝的操做xml

}io

Layout文件中使用該佈局進行聲明:class

<com.XX.CustomLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
        <ListView android:layout_width="wrap_content"  
          android:layout_height="fill_parent"  
          android:id="@+id/ListView01" 
          />
</com.XX.CustomLayout>擴展

最後在代碼中進行匹配:List

protected void onFinishInflate()       {                        mListView=(ListView)findViewById(R.id.ListView01);            mListView.setAdapter(mAdapter);         mListView.setSelector(new ColorDrawable(Color.TRANSPARENT));         mListView.setBackgroundColor(0xF3EEE5);         mListView.setCacheColorHint(0);         mListView.setDivider(null);                 }

相關文章
相關標籤/搜索