Skip to content Skip to sidebar Skip to footer

Navigation Drawer Is Not Doing Anything On Click Of The Item

I am trying to achieve the following scenario. An activity containing a view pager having a navigation drawer(opens when swiped left to right) and a search bar that opens when swip

Solution 1:

can you give it a try by using below layout :

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
    </FrameLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#ffe6e1d4"
        android:focusable="true"
        android:focusableInTouchMode="true" />

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="left" />

</android.support.v4.widget.DrawerLayout>

enter image description here


Post a Comment for "Navigation Drawer Is Not Doing Anything On Click Of The Item"