次に例を示します。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/myText"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:id="@+id/imageList"
android:layout_below="@+id/myText"
android:layout_height="match_parent"
android:layout_width="match_parent">
<!-- Here come ImageViews -->
</LinearLayout>
</RelativeLayout>
ImageViewsをLinearLayoutに動的に追加しますが、画像が多すぎると、新しい行に戻ることができません。
- それはLinearLayoutでも可能ですか?(重量、向き...)
- そうでない場合は、このためにどのアーキテクチャを作成する必要がありますか?
これが私がLinearLayoutに膨らませたImageViewです:
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/image"
android:layout_width="60dp"
android:layout_height="60dp" />