这是一个例子:
<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" />