在Horizo​​ntalScrollView中填充父级

时间:2016-04-14 11:41:51

标签: android android-layout

我将此代码用于滚动视图,并为宽度和高度选择fill-parent。但只有高度是填充父级而不是宽度。 我希望每个按钮都能填满整个屏幕。

enter image description here

<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>

0 个答案:

没有答案