gpt4 book ai didi

android - 如何避免这个 Android Scrollview 进入无限滚动?

转载 作者:行者123 更新时间:2023-11-29 20:50:33 26 4
gpt4 key购买 nike

这是我的 ScrollView 布局。它只是无限滚动。我只需要为用户在 Activity 中看到的元素滚动。我已经尽了所有努力,但是没有成功。这是布局..

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
android:id="@+id/parentLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_marginLeft="-20dp"
android:layout_marginStart="-20dp" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
</Button>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="15dp"
android:layout_marginLeft="100dp"
android:layout_marginStart="100dp"
android:gravity="center"
android:text="Create event" >
</Button>
</LinearLayout>

最佳答案

设置LinearLayout(id parentLayout)的高度为wrap_content。

ScrollView 设置为 wrap_content,但其子项设置为 fill_parent。这是没有意义的,因为某些东西需要提供大小。

关于android - 如何避免这个 Android Scrollview 进入无限滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29249604/

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