0
好的,所以我想創建一個在列表視圖中具有並排圖像視圖的佈局。 Here將是我想要實現的一個例子。但是,我真的不知道我應該如何做到這一點。這是我在網上找到的一個例子。問題是,一旦你開始添加更多的圖像視圖,它只是將它們添加到同一行,而不是現有的。如何將幾個ImageView並排放置?
<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來做這件事?
請使用gridview來實現這個 – Ramit
https://developer.android.com/guide/topics/ui/layout/gridview.html – Ramit
如果圖片數量不固定,ListView或RecyclerView更好。我建議你使用RecyclerView和GridLayoutManager。這裏是一個例子http://blog.sqisland.com/2014/12/recyclerview-grid-with-header.html?m=1 – nshmura