0

我有一个布局文件。它需要在 Async 线程中充气,然后需要发送到主线程显示。但是如果我在 Activity 创建后立即给它充气。它有错误:inflateexception。

如果我在主线程中充气一次,然后在异步线程中充气。它没有错误。

这是我的代码膨胀代码:

View vwDragMainOrder = layoutInflate.inflate(
R.layout.pop_drag_mainorder, null);

布局文件:

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

    <RadioGroup
        android:id="@+id/et_pop_drag_mainorder_exceptiontypegroup"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/et_pop_drag_mainorder_batch"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Batch goods"
            android:textSize="24sp" />

        <RadioButton
            android:id="@+id/et_pop_drag_mainorder_unshippedoffload"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="goods not put in storage "
            android:textSize="24sp" />

        <RadioButton
            android:id="@+id/et_pop_drag_mainorder_shippedoffload"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Already out kula cargo"
            android:textSize="24sp" />
    </RadioGroup>

    <LinearLayout
        android:id="@+id/ll_pop_drag_mainorder_pcsremark"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="90dp"
            android:layout_margin="5dp"
            android:layout_height="wrap_content"
            android:text="Number note"
            android:textSize="22dp" />

        <EditText
            android:id="@+id/et_pop_drag_mainorder_pcsremark"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/ll_pop_drag_mainorder_remark"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="90dp"
            android:layout_margin="5dp"
            android:layout_height="wrap_content"
            android:text="remark"
            android:textSize="22dp" />

        <EditText
            android:id="@+id/et_pop_drag_mainorder_remark"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/ll_pop_drag_mainorder_exception"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="90dp"
            android:layout_margin="5dp"
            android:layout_height="wrap_content"
            android:text="Exception "
            android:textSize="22dp" />

        <EditText
            android:id="@+id/et_pop_drag_mainorder_exception"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />
    </LinearLayout>

</LinearLayout>
4

0 回答 0