Android改变ExpandableListView的indicator图标实现方法

时间:2022-03-03 09:06:55

本文实例讲述了Android改变ExpandableListView的indicator图标实现方法。分享给大家供大家参考,具体如下:

1)定义xml文件先,命名为expand_list_indicator.xml

?
1
2
3
4
5
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:state_expanded="true" android:drawable="@drawable/indicator_open" />
 <item android:state_expanded="false" android:drawable="@drawable/indicator_close" />
</selector>

2)在得到ExpandableListView 实例id后调用xml文件

?
1
2
ExpandableListView mExpandList = (ExpandableListView) findViewById(R.id.expandlist);
mExpandList.setGroupIndicator(this.getResources().getDrawable(R.drawable.expand_list_indicator));

注意事项:因为indicator背景图片会自动拉伸,如果不想图片被拉伸的话,那么就对indicator_open ,indicator_close图片做特殊处理,做成.9.png格式就可以了。

希望本文所述对大家Android程序设计有所帮助。