为啥我的 ListView 是从下到上开始的?

Posted

技术标签:

【中文标题】为啥我的 ListView 是从下到上开始的?【英文标题】:Why is my ListView begins from the bottom to top?为什么我的 ListView 是从下到上开始的? 【发布时间】:2019-05-27 04:34:51 【问题描述】:

我有一个产品列表视图,这些产品从数据库中一一添加到 ArrayList。 添加的顺序和列表视图是相等的(这样就可以了)。

我的问题是产品是从页面中间显示的 (我必须向下滚动很多才能看到它们)。 listview display 我的 XML :

<ListView
    android:id="@+id/listviewmanager"
    android:layout_
    android:layout_
    android:layout_alignParentLeft="true"
    android:clickable="false"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintVertical_bias="1.0" >

    <ScrollView
        android:id="@+id/scrollView2"
        android:layout_
        android:layout_
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="1.0">

        <LinearLayout
            android:layout_
            android:layout_
            android:orientation="vertical" />
    </ScrollView>
</ListView>

谢谢。

【问题讨论】:

为什么你的列表视图中有滚动视图和线性布局? 因为滚动有问题,所以我添加了这个。你有更好的选择吗?我想听听:) 请分享您的整个 XML 代码。我也相信前两项是空的,因为您可以在屏幕截图上看到分隔线,但没有数据。 【参考方案1】:

在您的ListView 中替换此行

android:layout_

用这条线

android:layout_

使用match_parent,您不仅可以使用ListView 填充整个屏幕457dp

【讨论】:

@D123 从列表视图中删除滚动视图和线性布局。 (并将高度设置在 match_parent 上)

以上是关于为啥我的 ListView 是从下到上开始的?的主要内容,如果未能解决你的问题,请参考以下文章

在jQuery中从下到上动画div而不是从上到下[重复]

列表项从下到上删除,但不是从上到下

网页中<marquee></marquee>是从右到左 从下到上是那个? 帮忙一下

从下到上的动画边框颜色变化?

WPF 从下到上调整窗口大小

iOS UIScrollView 以编程方式从下到上添加元素