自定义复合视图和.findViewById()

时间:2016-11-11 11:00:00

标签: android android-custom-view layout-inflater custom-view findviewbyid

我真的很担心.findViewById()方法及其在自定义复合视图创建中的用法。我不确定确保它永远不会返回null的确切位置。

假设我有这个自定义复合视图,并将其添加到某些.xml中,如下所示:

<com.app.path.TwoButtonsView
            android:id="@+id/ok_cancel_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

two_buttons_view.xml

<?xml version="1.0" encoding="utf-8"?>
<merge>

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:tools="http://schemas.android.com/tools"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent"
                  android:orientation="horizontal">

        <TextView
            android:id="@+id/first_button"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:clickable="true"
            android:gravity="center"
            android:textAllCaps="true"/>

        <TextView
            android:id="@+id/second_button"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:clickable="true"
            android:gravity="center"
            android:textAllCaps="true"/>
    </LinearLayout>
</merge>

TwoButtonsView.java

public class TwoButtonsView extends LinearLayout {

    // views
    private TextView mFirstButtonView;
    private TextView mSecondButtonView;

    public TwoButtonsView(Context context) {
        super(context);
        init(context, null);
    }

    public TwoButtonsView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context, attrs);
    }

    public TwoButtonsView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context, attrs);
    }

    @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    public TwoButtonsView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
        init(context, attrs);
    }

    private void init(Context context, AttributeSet attrs) {
        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        inflater.inflate(R.layout.two_buttons_view, this);

        // retrieve views
        mFirstButtonView = (TextView) findViewById(R.id.first_button); // is there a chance it will return null?
        mSecondButtonView = (TextView) findViewById(R.id.second_button); // is there a chance it will return null?
    }
}

我的问题是:.findViewById(RESOURCE_ID)是否有可能在致电null后立即返回inflater.inflate(R.layout.two_buttons_view, this);,或者我应该在init()上调用我的onFinishInflate()方法回调?

1 个答案:

答案 0 :(得分:2)

  

我的问题是:.findViewById(RESOURCE_ID)是否有机会   将在调用后立即返回null   inflater.inflate(R.layout.two_buttons_view,this)

不,只要您要查找的视图位于布局中并且您明确添加到视图的层次结构中,就没有。最后,findViewById上的View[]循环,由addView填充。

关于

的小记
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.two_buttons_view, this);

ViewGroup有静态方法inflate,因此您无需检索inflater来电getSystemService