分类 android 下的文章

在安卓LinearLayout布局中使用ScrollView里面只能包含一个子组件

如果里面是textview 只能包含一个 不能包含第二个
正确列子

  <ScrollView
        android:id="@+id/scrollView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"
        android:layout_weight="1"
        >

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


    </ScrollView>

错误列子

<ScrollView
        android:id="@+id/scrollView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none"
        android:layout_weight="1"
        >

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

    </ScrollView>