我在文件夹“ layout /”中有一个名为“ debug.xml”的自定义布局,希望以编程方式将其添加到名为centerLayout的activity_main.xml中的预定义布局中。 “ debug.xml”类似于:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/debug_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <EditText
            android:id="@+id/commandEditText"
            android:layout_width="0dp"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:gravity="center_vertical"
            android:inputType="text" />
    </LinearLayout>

</LinearLayout>


我想将此“ debug_layout”添加到centerLayout中:

LinearLayout centerLayout = (LinearLayout) findViewById (R.id.center_layout);
LinearLayout debugLayout = (LinearLayout) findViewById (R.id.debug_layout);
centerLayout.addView(debugLayout);


但是它在“ centerLayout.addView(debugLayout);”处遇到NULL指针异常。因此,似乎debug_layout尚未初始化。有人可以帮助我吗?

最佳答案

您确定您的centerLayout不为null吗?如果没有,您是否尝试过?

LinearLayout centerLayout = (LinearLayout) findViewById (R.id.center_layout);
LinearLayout debugLayout = getLayoutInflater().inflate(R.layout.debug, centerLayout, false);
centerLayout.addView(debugLayout);

07-28 12:46