我的组件有问题ScrollView
。如何防止拉伸ScrollView
?
我有一个LinearLayout
withweight_sum = 2
和一个ImageView
withlayout_weight = 1
和一个ScrollView
withlayout_weight = 1
有 2、3 个元素时看起来不错ScrollView
,这意味着它不需要滚动。当我添加更多元素来ScrollView
调整大小时,它的高度变得越来越大,并且ImageView
变得越来越小。
这些项目的高度是wrap_content
。
如何防止这个问题?
代码:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:layout_weight="3"
android:orientation="vertical"
android:weightSum="2" >
<ImageView
android:id="@+id/pregamePlayerNames"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@drawable/en_player_names" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_weight="1" >
<LinearLayout
android:id="@+id/pregamePlayerNamesScroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/home_player_names_ram"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
</LinearLayout>