我将此代码用于滚动视图,并为宽度和高度选择fill-parent。但只有高度是填充父级而不是宽度。 我希望每个按钮都能填满整个屏幕。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:fillViewport="true">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button1" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button2" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button3" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button4" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button5" />
</LinearLayout>
</HorizontalScrollView>