コンポーネントに問題がありScrollView
ます。ストレッチを防ぐ方法はScrollView
?
私はLinearLayout
withweight_sum = 2
とその中にImageView
withlayout_weight = 1
とScrollView
withを持っていますlayout_weight = 1
ScrollView
2、3の要素がある場合は問題なく表示されます。つまり、スクロールする必要はありません。サイズを変更する要素をさらに追加すると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>