好的,所以我正在尝试创建一个在列表视图中具有并排图像视图的布局。 Here将是我努力实现的一个例子。但是,我真的不确定我应该怎么做。这是我在网上找到的一个例子。问题是,一旦你开始添加更多的图像视图,它只是将它们添加到同一行而不是当前行。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="15dip"
android:paddingBottom="15dip">
<ImageView android:id="@+id/numberDays"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitStart"
android:layout_weight="1"
android:src="@drawable/placeholder1" />
<ImageView android:src="@drawable/placeholder1"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:scaleType="fitStart"
android:layout_weight="1"
android:id="@+id/daysText"></ImageView>
</LinearLayout>
listview是一种更好的方法来并排显示这些图像,还是我应该用XML这样做呢?
答案 0 :(得分:1)
您应该使用网格视图并使用此
你的gridView xml中的android:numColumns =“”。