我想在我的 Android 应用程序中为可扩展列表视图设置新样式。我正在 drawable 文件夹中创建一个group_indicator.xml文件,我正在其中编写代码:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_empty="true" android:drawable="@drawable/arrowright1">
<item android:state_expanded="true" android:drawable="@drawable/arrowdown1">
<item android:drawable="@drawable/arrowright1">
</item></item></item></selector>
然后我ExpandableList
在主文件的视图中使用这个 XML 文件:
<ExpandableListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:groupIndicator="@drawable/group_indicator"
android:layout_weight="1" >
</ExpandableListView>
现在我想为我的可扩展列表设置更多样式,我想更改父节点和子节点的外观。
有没有其他方法可以做到这一点?我听说文件夹中有一些style.xml文件res->values
,但我不知道如何实现它。请指导。