Android可扩展列表视图组指示符的对齐方式

时间:2013-12-03 06:41:45

标签: android listview expandablelistview

我想更改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张补丁图片。但该指标排在首位而不是中心位置。请帮我看看如何将组指示器图标/图像居中。

[编辑]

以下是虚拟图像参考:

http://tinypic.com/view.php?pic=o5oxkx&s=5#.UqAcb9IW13N

0 个答案:

没有答案