gpt4 book ai didi

android - ScrollView 底部空白

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:50:07 27 4
gpt4 key购买 nike

我遇到了 ScrollView 的问题,它在底部留下了一个空白区域。它填充了少量 TextView 和 GridView,应该填充整个 RelativeLayout 父级。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context=".showPictures">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView.../>
<GridView.../>
...
</LinearLayout>
</ScrollView>
</RelativeLayout>

有人知道哪里出了问题吗?

最佳答案

让你的相对布局高度匹配父级,在你的 ScrollView 中也使用 android:fillViewPort = "true"

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".showPictures">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

//...

关于android - ScrollView 底部空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28917576/

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