0

I want to open my Drawer at the bottom but i could not is there any one who could solve my issue???

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    tools:openDrawer="bottom"
    android:background="#FFFFFF"
    android:id="@+id/drawer_layout">
Tamir Abutbul
  • 7,301
  • 7
  • 25
  • 53
Shayan Aslam
  • 43
  • 10

1 Answers1

2

DrawerLayout can't be use from bottom or up it's only for vertical sides(left, right) for bottom you need to use BottomSheetDialogFragment or BottomSheetBehavior

Oussema Aroua
  • 5,225
  • 1
  • 24
  • 44