我试图在expandableListView的组行中右侧插入图标。我尝试使用setGroupIndicator,但它只是替换左侧的图标。在我的情况下,我只是想在组行的文本右侧添加一个图标..我应该这样做吗?
答案 0 :(得分:1)
您必须在groupView中更改要充气的布局。使用这样的东西:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/grouptext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<ImageView
android:id="@+id/groupicon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>