前言
在開發(fā)自定義view時叛赚,往往需要綁定xml布局文件,那具體怎么做呢稽揭?
自定義view和xml布局文件關(guān)聯(lián)的思路是:在自定義view的構(gòu)造函數(shù)中俺附,通過LayoutInflater.from(context).inflate(R.layout.test_layout, this)
關(guān)聯(lián)xml布局文件。具體代碼如下
1溪掀、代碼
自定義布局——xml代碼(test_layout.xml)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
自定義組件——Java代碼(TestView)
public class TestView extends LinearLayout {
public TestView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init(context);
}
/**
* 初始化組件
* @param context
*/
private void init(Context context) {
//加載布局文件到此自定義組件
//注意:第二個參數(shù)需填this事镣,表示加載text_layout.xml到此自定義組件中。如果填null揪胃,則不加載璃哟,即不會顯示text_layout.xml中的內(nèi)容
View view = LayoutInflater.from(context).inflate(R.layout.test_layout, this);
//動態(tài)設(shè)置自定義xml中TextView的顯示內(nèi)容
TextView title = view.findViewById(R.id.tv_title);
title.setText("我是自定義標(biāo)題");
}
}
調(diào)用代碼(activity_main.xml)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.fireflyh.demo.MainActivity"
android:orientation="vertical">
<com.fireflyh.demo.widget.TestView
android:layout_width="match_parent"
android:layout_height="wrap_content"></com.fireflyh.demo.widget.TestView>
</LinearLayout>
正文結(jié)束
2氛琢、坑
錯誤重現(xiàn):
把
LayoutInflater.from(context).inflate(R.layout.test_layout, this);
寫成了
LayoutInflater.from(context).inflate(R.layout.test_layout, null);
現(xiàn)象:自定義xml中的內(nèi)容不顯示在自定義組件中。