microsoftarchive / android-sliding-layer-lib

Highly customizable SlidingLayer as you have seen in Wunderlist
http://wunderlist.com
Apache License 2.0
932 stars 279 forks source link

Close layer on tap outside #97

Closed strmchsr closed 8 years ago

strmchsr commented 8 years ago

how to close the layer if tap outside.

jmoscatiello commented 8 years ago

<View android:id="@+id/mask" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/translucent_black" android:visibility="gone"/>

Add a view underneath that only shows when opened. Then add an on click on that view

strmchsr commented 8 years ago

thanks