私はそのようにListView
ネストされたものを持っています:HorizontalScrollView
<HorizontalScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<ListView android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</HorizontalScrollView>
のメソッドArrayAdapter
では、 andgetView()
を動的に追加TextViews
しImageViews
ます。ListActivity
基になるデータは、のonCreate()
メソッドで一度設定されます。1 つのリスト項目の幅が使用可能なスペースを超える場合、ScrollView
それが最初の項目であり、View は最初の項目の右の境界線が表示されるまでスクロールしない限り、スクロールしません。
足りないものはありますか?