Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Remove Shadow On Navigation Drawer

See here what i mean

Hi, I'm using stock Navigation drawer v4 and i ask how can delete that background shadow when navigation drawer is open.

this is my code of NavigationDrawerFragment.java

public void setUp(int fragmentId, DrawerLayout drawerLayout) {
    mFragmentContainerView = getActivity().findViewById(fragmentId);
    mDrawerLayout = drawerLayout;

    // set a custom shadow that overlays the main content when the drawer opens
    mDrawerLayout.setDrawerShadow(R.drawable.trasparent, GravityCompat.START);
    // set up the drawer's list view with items and click listener

    ActionBar actionBar = getActionBar();
    actionBar.setDisplayHomeAsUpEnabled(true);
    actionBar.setHomeButtonEnabled(true);

And this is MainActivity.xml

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- Main layout -->
    <FrameLayout
        android:id="@+id/main_fragment_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />


    <ImageView
        android:id="@+id/ImageView3_Left"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />

    <!-- The navigation drawer -->
    <ListView android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:background="#FFFFFFFF"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp"/>

</android.support.v4.widget.DrawerLayout>
like image 426
Marco Aprea Avatar asked Jul 22 '15 16:07

Marco Aprea


2 Answers

This is works for me in androidX

/*Navigation drawer with transparent background*/
drawerLayout.setScrimColor(getResources().getColor(android.R.color.transparent));

/*Remove navigation drawer shadow/fadding*/
drawerLayout.setDrawerElevation(0);
like image 160
Renish Patel Avatar answered Sep 22 '22 16:09

Renish Patel


I find the solution :D

mDrawerLayout.setScrimColor(getResources().getColor(android.R.color.transparent));

Adding this in MainActivity.java

like image 39
Marco Aprea Avatar answered Sep 19 '22 16:09

Marco Aprea