Kotlin自定义视图引用textview返回null

时间:2018-06-27 16:56:37

标签: android android-layout kotlin

我有一个自定义视图:

class CustomerView(context: Context, attrs: AttributeSet) : LinearLayout(context, attrs) {

    private var txtName: TextView
    private var txtAge: TextView

    init {

        View.inflate(context, R.layout.view_customer, null)

        txtName = findViewById(R.id.txtTestName)
        txtAge = findViewById(R.id.txtTestAge)

        txtName.text = "Person"
        txtAge.text = "61"

    }
}

我的布局view_customer如下:

<?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="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/txtTestName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="name" />

    <TextView
        android:id="@+id/txtTestAge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="age" />
</LinearLayout>

但是,当我在其他页面中调用它时,应用程序崩溃并显示

  

由于:java.lang.IllegalStateException:   findViewById(R.id.txtTestName)不能为null           在com.helcim.helcimcommercemobile.customviews.CustomerView。(CustomerView.kt:19)

这是我尝试分配txtName

的时间

当我将其放置在布局视图中时,我并不真正理解它为null。并命名相同。

我创建的自定义视图不正确吗?

1 个答案:

答案 0 :(得分:4)

您必须将父级布局作为参数添加到'inflate'方法中。

class CustomerView(context: Context, attrs: AttributeSet) : LinearLayout(context, attrs) {

    private var txtName: TextView
    private var txtAge: TextView

    init {

        View.inflate(context, R.layout.view_customer, this)

        txtName = findViewById(R.id.txtTestName)
        txtAge = findViewById(R.id.txtTestAge)

        txtName.text = "Derek"
        txtAge.text = "23"

    }
}