Andrei Istrate

Results 3 issues of Andrei Istrate

Library Version v1.0.6 The layout set as `secondLayout` is not displayed entirely. It has `android:layout_height="match_parent"` but the `ExpandableLayout` doesn't take in the full size of the layout file. I'd expect...

I'm using the following snippet to handle some permissions: ``` fun onClick(){ val dispo = RxPermissions(this) .requestEachCombined(Manifest.permission.READ_CONTACTS) .subscribe { permission: Permission -> if (permission.granted) //permission granted action else if (!permission.shouldShowRequestPermissionRationale)...

Is there a way to add extra padding only to the selected item?