gpt4 book ai didi

java - 将 ListView 放入 Horizo​​ntalScrollView 的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-29 09:07:08 24 4
gpt4 key购买 nike

我正在尝试制作一个日历应用程序,我想在 ListView 上列出一天中的所有事件并水平滚动日期。当我向右滚动时,ListView 应该重新绘制明天的事件。我的所有事件都在 sqllite 数据库中。

这是我的 XML 的样子:

<?xml version="1.0" encoding="UTF-8"?>       

<HorizontalScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:scrollbars="none">

<LinearLayout
android:id="@+id/layout"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Medium Text"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceMedium" />

<ListView android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

</LinearLayout>

</HorizontalScrollView>

如何填充 ListView 并使其在每次滚动时都获取新数据?

最佳答案

错误的做法,ListView 不能嵌套在 ScrollView 中。使用 ViewPager 对日期进行分页。

关于java - 将 ListView 放入 Horizo​​ntalScrollView 的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14344918/

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