已移除可扩展列表视图图标但仍占用空白区域

时间:2013-07-17 06:21:23

标签: android android-listview

我有一个可展开的列表视图我删除了图标,但空格仍然是空的

enter image description here

如何删除空间。

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".DirectorActivity" >

<ExpandableListView
    android:id="@+id/expandable_list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:transcriptMode="alwaysScroll"
    android:cacheColorHint="#00000000"
    android:listSelector="@android:color/transparent"
    android:layout_below="@+id/heading_textView"
    android:layout_marginTop="16dp" 
    android:groupIndicator="@null"
    android:divider="@android:color/transparent">
</ExpandableListView>

1 个答案:

答案 0 :(得分:0)

我也面临这个问题,我已经申请android:groupIndicator="@null",但这对我没用。

我认为那个地方只有hide the Icon它没有删除图标。

所以我按照some other example按照我的要求编辑了该代码。

一旦希望它适合你,请试一试。