gpt4 book ai didi

android - NavigationDrawer 去除阴影

转载 作者:行者123 更新时间:2023-11-30 01:45:27 27 4
gpt4 key购买 nike

我想要的是一个与下面设计中的主要内容无缝连接的 NavigationDrawer:

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>

最佳答案

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

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

关于android - NavigationDrawer 去除阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33784049/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com