我将动态地将 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 行每行 3 张图像?
[图像] [图像] [图像] [图像]
[图像] [图像] [图像] [图像]
[图像] [图像] [图像] [图像]