3

消耗品のリスト ビューがあります アイコンを削除しましたが、まだスペースが空です

ここに画像の説明を入力

スペースを削除する方法。

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>

4

1 に答える 1

0

私もこの問題に直面しており、申請android:groupIndicator="@null"しましたが、うまくいきませんでした。

hide the Iconアイコンを削除していないのはその場所だけだと思います。

だから私はいくつかの他の例に従い、私の要件に従ってそのコードを編集しました。

効果が期待できますので、是非一度お試しください。

于 2013-07-17T06:43:47.253 に答える