0

我面临一个问题,我需要在滚动视图中生成一个低于另一个的动态视图。单击按钮后应生成视图。

对于第一个按钮单击,它工作正常,但在第二次单击后它失败并出现错误“java.lang.IllegalStateException:ScrollView can host only one direct child”

谁能帮我解决这个问题。

我的主要活动布局,其中滚动视图是 activity_main.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
        tools:context=".MainActivity" android:layout_width="match_parent" android:layout_height="match_parent"
        android:id="@+id/parentRL">
    <Spinner android:id="@+id/spinState" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
    <Spinner android:id="@+id/spinCity" android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_below="@id/spinState"/>
    <TextView android:id="@+id/cityCount" android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_toRightOf="@id/spinCity" android:layout_below="@id/spinState" android:layout_marginLeft="5dp" 
        android:textIsSelectable="false"/>
    <Button android:id="@+id/showAddress" android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_toRightOf="@id/spinState" android:onClick="populateAddress" android:text="Search"/>
    <ScrollView android:id="@+id/scView" android:layout_width="match_parent" android:layout_height="wrap_content"
        android:layout_below="@id/spinCity">
    </ScrollView>
</RelativeLayout>

而需要用scrollview附加的视图布局是address_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/center" android:layout_width="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_height="wrap_content" android:text="@string/hello_world" android:layout_margin="10dp"
        android:textColor="#FF0000" android:textSize="30dp"
/>

在主要活动中,内部按钮单击侦听器:

LayoutInflater inflater = (LayoutInflater)MainActivity.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View myView = inflater.inflate(R.layout.address_layout, null);
TextView _c_ = (TextView)(myView.findViewById(R.id.center));
_c_.setVisibility(View.VISIBLE);
_c_.setText(my_random_number);
View insertPoint = findViewById(R.id.scView);
((ViewGroup) insertPoint).addView(myView, 0, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
4

1 回答 1

0

android 滚动视图只支持子视图,因此它会抛出 java.lang.IllegalStateException。您应该在滚动视图中添加一个线性布局或相对布局,然后将子级添加到该布局中。

    <ScrollView android:id="@+id/scView" android:layout_width="match_parent" android:layout_height="wrap_content"
        android:layout_below="@id/spinCity">
<LinearLayout android:id="@+id/layout" 
android:layout_width="match_parent" android:layout_height="wrap_content">
    </LinearLayout>
    </ScrollView>
于 2013-08-23T16:42:06.743 回答