2016-08-14 62 views
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來做這件事?

+0

請使用gridview來實現這個 – Ramit

+0

https://developer.android.com/guide/topics/ui/layout/gridview.html – Ramit

+0

如果圖片數量不固定,ListView或RecyclerView更好。我建議你使用RecyclerView和GridLayoutManager。這裏是一個例子http://blog.sqisland.com/2014/12/recyclerview-grid-with-header.html?m=1 – nshmura

回答

1

您應該使用網格視圖,這和使用該

機器人:在你的GridView XML爲numColumns =」「。

+0

我一定會嘗試一下並回報。 – Alex