gpt4 book ai didi

android - 水平 ScrollView 问题

转载 作者:太空狗 更新时间:2023-10-29 13:31:06 25 4
gpt4 key购买 nike

我想使用 Horizo​​ntalScrollView 制作新闻滚动条。作为第一步,我只是尝试 Horizo​​ntalScrollView,它只包含一个 Button 作为内容。我希望 Button 填满整个屏幕,并且 Button 的文本居中。但到目前为止,Button 卡在左侧。这是代码:

<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="40dip"
android:layout_marginTop="50dip"
android:background="#000000"
android:scrollbars="none" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center_vertical"
android:orientation="horizontal" >

<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="Button 1"
android:textSize="20sp" />
</LinearLayout>
</HorizontalScrollView>

如何解决这个问题?

最佳答案

How to solve this problem?

尝试在 Horizo​​ntalScrollView 上使用 fillViewport 属性:

android:fillViewport="true"

关于android - 水平 ScrollView 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15366702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com