2013-06-18 216 views
0

在我的佈局中,我需要一個像盒子類型的自定義列表視圖。Android自定義列表視圖?

該怎麼辦?

我的XML:

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="317dp" 
    android:gravity="top" 
    android:orientation="vertical" 
    android:background="@android:color/transparent" 
    > 

    <ListView android:id="@+id/slistview" 
     android:layout_height="fill_parent" 
     android:layout_width="fill_parent" 
     android:divider="#2867EA" 
     android:dividerHeight="1dp" 
     android:cacheColorHint="#00000000" 
     > 
    </ListView> 

</LinearLayout>  
+5

有一個自定義適配器膨脹的每一行的自定義佈局和適配器設置爲列表視圖。 http://www.androidhive.info/2012/02/android-custom-listview-with-image-and-text/ – Raghunandan

+0

使用像這樣的自定義適配器http://abhiandroidinfo.blogspot.in/2013/05/customised- listview-with-images.html – abhi

+0

box type?你可以插入任何圖片樣本? – deadfish

回答

2

您應該爲每一行自定義列表適配器和電源XML佈局。 這裏有一個全面的教程,適合您的需要:

Link

0

您可以使用customBaseadapterviewHolder ...

+0

爲多行listview ..好教程在這裏.. [鏈接] http://vaibhavadhyapak.blogspot.in/2013/01/building-custom-multi-line-listview-in.html – 2013-06-18 09:17:16

0

創建列表視圖的行中的XML,並設置行的背景,創造自定義適配器並設置適配器以列出視圖。

custom list view