ExpandableLayout
ExpandableLayout copied to clipboard
ExpandableLayout with empty headerLayout ?
Hi there,
I needed an ExpandableLayout which is triggered by an CheckBox and NOT by its header.
So I am searching for the smallest header.
Leaving the field empty or setting it to @null won't work.
This is my smallest "almost invisible" header:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="1px">
<View
android:layout_width="1px"
android:layout_height="1px"/>
</RelativeLayout>
I'd like this to be fixed...
Greetings, DaRolla