2011-07-20 117 views
0

我有一個expandableListView其中每個組有兩個孩子。子行用於編輯或刪除組。如何爲子行插入圖像?expandableListView兒童與文字和圖像

Group 1 
    <image here> Edit   <-- child 1 
    <image here> Delete   <-- child 2 

我使用SimpleExpandableListAdapter

希望有人能幫助:)

回答

0

你應該定義爲您的孩子一個佈局,然後將其指定當您創建ListAdapter。你可以做這樣的事情,雖然使用的RelativeLayout就會好很多(我用的LinearLayout,因爲這是一個有點更容易理解):

<?xml version="1.0" encoding="utf-8"?> 
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> 
     <LinearLayout 
android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> 
      <ImageView android:id="@+id/edit_icon" android:padding="2dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/edit"/> 
      <TextView android:id="@+id/edit_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="40sp" android:text="Edit"/> 
     </LinearLayout> 
     <LinearLayout 
android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> 
      <ImageView android:id="@+id/delete_icon" android:padding="2dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/delete"/> 
      <TextView android:id="@+id/delete_label" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="40sp" android:text="Delete"/> 
     </LinearLayout> 
</LinearLayout> 

然後當你調用setListAdapter你指定佈局()。

+0

但是通過使用你的佈局,每個孩子都會得到一個刪除+編輯圖像和刪除+編輯文本?我想讓第一個孩子擁有編輯圖像和文本,然後讓下一個孩子擁有刪除圖像和文本? – Arcadia

+0

是的,這就是以上所做 - 我不明白你想要什麼。如果你想要一個只有兩個子項目的列表,你可以單獨給列表中的兩個子項充氣。我建議看一下http://commonsware.com/上提供的這本書:你可以免費得到一個較舊的版本,這就是你需要的東西。 –

+0

你從哪裏可以得到一本書的免費舊版本? – Arcadia