1

ImageViewをLinearLayout内に動的に(コードで)配置します。XMLで定義されているのはこのLinearLayoutのみです。

<LinearLayout
   android:id="@+id/pictures"
   android:orientation="horizontal"
   android:singleLine="false"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content">
</LinearLayout>

現在、LinearLayoutは1行の画像のみを表示します。残りの画像はなくなりました。LinearLayoutが自動的に新しい行にジャンプしてすべての画像をロードするように、コード内に何を入れる必要がありますか?例:4行で1行あたり3枚の画像?

[画像][画像][画像][画像][画像]
[画像][画像][画像][
画像][画像][画像][画像]

4

1 に答える 1

0

ListViewの代わりに使用する必要がありLinearLayoutます。内部と同じタイプのsListViewを追加できるためです。ViewItem

何かをするために、

1) http://www.vogella.com/articles/AndroidListView/article.html
2) http://w2davids.wordpress.com/android-listview-with-iconsimages-and-sharks-with-lasers/
3) http ://www.javasrilankansupport.com/2012/05/android-listview-example-with-image-and.html
4) http://www.androidhive.info/2012/02/android-custom-listview-with-画像とテキスト/

于 2012-12-19T21:02:40.990 に答える