私はカレンダー アプリを作成しようとしています。ListView で 1 日のすべてのイベントを一覧表示し、日を水平方向にスクロールしたいと考えています。右にスクロールすると、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 にデータを入力して、スクロールするたびに新しいデータを取得するにはどうすればよいですか?