fix: tap the player bottom sheet header to bring player up

This commit is contained in:
antonio 2023-06-30 18:34:33 +02:00
parent 960dd6c76a
commit 922153837d
2 changed files with 10 additions and 0 deletions

View file

@ -141,6 +141,10 @@ public class MainActivity extends BaseActivity {
handler.postDelayed(runnable, 100);
}
public void expandBottomSheet() {
bottomSheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
}
public void setBottomSheetDraggableState(Boolean isDraggable) {
bottomSheetBehavior.setDraggable(isDraggable);
}