android水平scrollview

前端之家收集整理的这篇文章主要介绍了android水平scrollview前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好
我测试水平scrollview我来到一个奇怪的问题,我把一个按钮在水平scrollview与布局高度和宽度fill_parent,但该标签没有效果的布局,让我看看我的布局
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:fillViewport="true"
>

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        >
        <Button             
            android:text="Button"
            android:id="@+id/button1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
        </Button>
    </LinearLayout>

    </HorizontalScrollView>

我如何用水平scrollview中的按钮填充布局

解决方法

问题可能在android:width =“wrap_content”…. 因为你的包装水平scrollview的内容,它是线性布局和按钮在上述情况下的父母……. 这可能会造成所有问题… 要么是硬编码大小的线性布局,要么将android:width =“fill_parent”放在水平滚动视图…..
原文链接:https://www.f2er.com/android/312067.html

猜你在找的Android相关文章