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枚の画像?
[画像][画像][画像][画像][画像]
[画像][画像][画像][
画像][画像][画像][画像]