2011-12-01 121 views
3

我正在使用Android 3.0。我想顯示一個包含片段的列表視圖。每個片段由一個圖像,一個描述和一些其他UI元素組成。如何顯示自定義片段的列表視圖?

我正在尋找一些示例代碼或指針。

+0

您可以通過自定義的ListView究竟意味着什麼,你可以在其他的ListView圖像和說明呢? – havexz

回答

2

您的片段應該延伸ListFragment。 ListFragment參考文檔解釋瞭如何使用自定義ListView和行佈局。

http://developer.android.com/reference/android/app/ListFragment.html

在列布局(每一行代表一個列表項),可以用於顯示圖像添加ImageView的。

<ImageView android:id="@+id/imgView" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"/> 

<TextView android:id="@+id/text2" 
    android:textSize="16sp" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"/> 

+0

getlayout充氣機不工作..... – user1034991

+3

如果你解釋你在做什麼並粘貼一些代碼/日誌/堆棧跟蹤會更好。 「不工作」並不具有建設性。 – Anirudh

+0

@Anirudh謝謝你的明確迴應。這裏的標題不應該顯示片段的自定義列表視圖。或者在列表視圖中顯示自定義片段?看起來用戶的標題倒退了。 –

相關問題