1

我想在我的 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,但我不知道如何实现它。请指导。

4

2 回答 2

3

您需要使用实现自定义ExpandableListAdapter

覆盖以下方法:

getChildView to override child view and inflate your own custom view. getGroupView to override group header view and inflate your own custom view.

于 2012-11-10T06:25:47.493 回答
0

使用ExpandableListView#setGroupIndicator(Drawable)方法。它对我有用。希望它会帮助你。

于 2012-11-10T06:01:12.127 回答