ExpandableLayout icon indicating copy to clipboard operation
ExpandableLayout copied to clipboard

ExpandableLayout with empty headerLayout ?

Open DaRolla opened this issue 9 years ago • 0 comments

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

DaRolla avatar Mar 22 '16 14:03 DaRolla