最近經過看別人代碼和網上搜索,發現如今自定義LinearLayout的方式有兩種。第一種是在擴展的LinearLayout構造函數中使用Inflater加載一個佈局,並從中提取出相關的UI組件進行封裝,造成一個獨立的控件。在使用該控件時,因爲它全部的子元素都是在運行時經過代碼動態建立的,因此該控件只能以一個獨立控件的形式在Layout文件中聲明,例如:android
<com.XX.CustomLayout android:id="@+id/XX" ide
android:layout_width="XX"函數
android:layout_height="YY" />佈局
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); }