Kennyc1012 / BottomSheetMenu

BottomSheetMenu style dialogs for Android
Apache License 2.0
887 stars 99 forks source link

Is there a way to programatically dismiss the bottom sheet? #26

Closed kiaanpillay closed 8 years ago

kiaanpillay commented 8 years ago

Hi, great library! I'd like to know if there is anyway to dismiss the dialog programmatically? I can't seem to find any bottomsheet.dismiss() or anything like that?

Kennyc1012 commented 8 years ago

BottomSheet extends Dialog, so you can call the dismiss method on it just like any other dialog.

BottomSheet bottomSheet =  new BottomSheet.Builder(getActivity())
    ...
    ...
    .create();

bottomSheet.show();
...
...
bottomSheet.dismiss();
kiaanpillay commented 8 years ago

Works perfectly, thanks