导航抽屉删除阴影

问题描述 投票:1回答:2

我想要的是一个导航抽屉,它与主要内容无缝连接,如下面的设计:

design

不知怎的,我无法从抽屉里得到阴影。

我试过的是这个:

drawer.setScrimColor(Color.TRANSPARENT);
drawer.setDrawerShadow(R.drawable.transparent, GravityCompat.START);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    drawer.setElevation(0f);
}

setScrimColor用于删除整个调光效果,但阴影仍然存在:

screenshot

我的activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include layout="@layout/app_bar_main" android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:layout_width="175dp"
        android:layout_height="match_parent"
        android:background="@color/backgroundColor"
        android:orientation="vertical"
        android:layout_gravity="start"
        android:id="@+id/navigationViews" />

</android.support.v4.widget.DrawerLayout>
android navigation-drawer android-navigation-drawer
2个回答
1
投票

将以下代码添加到您的JAVA类。

drawer.setScrimColor(Color.TRANSPARENT); 
drawer.setDrawerElevation(0);

0
投票

解决方案是从LinearLayout中删除背景颜色并将其移动到父Drawerlayout:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/backgroundColor"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include layout="@layout/app_bar_main" android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:layout_width="175dp"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_gravity="start"
        android:id="@+id/navigationViews" />

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

为什么?我认为当drawerlayout预测抽屉具有与主布局不同的背景时,无论在什么设置下,它都会绘制阴影。我不确定,我还没看过Android的源代码。

© www.soinside.com 2019 - 2024. All rights reserved.