我正在研究一個簡單的待辦事項列表應用程序。我使用ExpandableListView
來顯示任務。出於某種原因,我一直在組和子視圖之間出現一個奇怪的空間。我試圖在xml中設置divider height爲0dp
,但它不會改變任何東西。爲ExpandableListView
可擴展列表視圖 - 子視圖和組視圖之間的空間
我的XML代碼:
<ExpandableListView android:id="@+id/myList"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/addTask"/>
編輯:
子視圖的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="130dp"
android:background="#ff0000">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/displayDetails"
android:text="@string/detailsChild"
android:textColor="#ffffff"/>
父視圖的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="#424242"
android:layout_height="130dp"
android:id="@+id/layoutCustom">
<View android:layout_width="fill_parent" android:layout_height="30dp"
android:background="#FFFFFF"
android:id="@+id/SpaceView"
/>
<TextView
android:layout_below="@id/SpaceView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:text="@string/nameofcourse"
android:id="@+id/course" android:layout_margin="10dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/date"
android:id="@+id/date"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:layout_below="@+id/course"
android:layout_marginLeft="10dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/date"
android:textColor="#FFFFFF"
android:textSize="16sp"
android:text="@string/typeoftask"
android:layout_marginLeft="10dp"
android:id="@+id/type" android:layout_marginTop="10dp"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/delete"
android:textSize="26sp"
android:textColor="#FE2E2E"
android:id="@+id/delete"
android:minWidth="20dp"
android:minHeight="0dp"
android:focusable="false"
android:layout_below="@+id/SpaceView" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"/>
<ImageButton android:layout_width="40dp" android:layout_height="50dp"
android:id="@+id/mainEdit"
android:src="@drawable/edit2"
android:focusable="false"
android:layout_below="@+id/date"
android:layout_alignParentRight="true"/>
</RelativeLayout>
謝謝你們,有一個很好的一週!
可以添加'兒童和組視圖xml'文件? –
編輯帖子並添加 – baki1995
它可能是頁眉/頁腳分隔線嗎?嘗試在ExpandableListView中設置android:headerDividersEnabled = false並查看是否有效。 – Dave