我想更改Exapandable listview组指标。所以我尝试过如下:
<ExpandableListView
android:layout_width="match_parent" android:layout_height="wrap_content"
android:cacheColorHint="#00000000"
android:layout_marginTop="5dp"
android:groupIndicator="@drawable/expandablelist_selector"/>
expandablelist_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/minus"
android:state_expanded="true" ></item>
<item android:drawable="@drawable/plus"></item>
</selector>
我使用过9张补丁图片。但该指标排在首位而不是中心位置。请帮我看看如何将组指示器图标/图像居中。
[编辑]
以下是虚拟图像参考: