gpt4 book ai didi

android - 如何使用水平 ScrollView 组件?

转载 作者:行者123 更新时间:2023-11-29 21:57:56 27 4
gpt4 key购买 nike

我想创建一个水平 ScrollView ,就像图像中显示的那样 horizontal scroll view

在 android 小部件中,我在复合部分找到了水平 ScrollView 小部件,但不知道如何使用它。请帮忙

最佳答案

首先创建xml 文件 并添加Horizo​​ntalScrollView,然后将一个布局作为子布局添加到其中。然后你可以添加任何没有。对新添加的 child 的看法,这使得整个事情滚动

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<!-- child views here -->
</RelativeLayout>
</HorizontalScrollView>
</LinearLayout>

关于android - 如何使用水平 ScrollView 组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12740654/

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