gpt4 book ai didi

android - 抽屉阴影没有被移除

转载 作者:行者123 更新时间:2023-11-29 01:04:12 25 4
gpt4 key购买 nike

我试图在导航 View 打开时移除抽屉阴影。正如许多论坛中所建议的那样,我使用以下代码删除了抽屉阴影。但它似乎没有任何影响。请帮助我找出我要去哪里错了。我实际上正在尝试实现相同的效果,但是当抽屉打开时,抽屉的末端似乎有一个类似线条/阴影的效果。它看起来与链接中的不一样。下面是我的应用程序的屏幕截图。如您所见,抽屉导航的末尾似乎有类似线条/阴影的效果。我怎样才能删除它。我用红色突出显示了这个问题。 my image

Moving and resizing DrawerLayout's content on sliding

drawer.setScrimColor(Color.TRANSPARENT);
drawer.setDrawerShadow(R.drawable.drawer_shadow, GravityCompat.END);

我的 XML

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/navmenu_gradient"
android:fitsSystemWindows="true"
tools:openDrawer="start"
>

<RelativeLayout android:id="@+id/holder"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

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

</LinearLayout>

</RelativeLayout>

<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="left"
app:theme="@style/NavigationDrawerStyle"
android:background="@drawable/navmenu_gradient"
app:itemTextColor="@drawable/drawer_item_color"
app:itemIconTint="@drawable/drawer_item_color"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.NavigationView"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer" />

我的 OnDrawerSlide 方法

public void onDrawerSlide(View drawerView, float slideOffset) {

                                               // Scale the View based on current slide offset
final float diffScaledOffset = slideOffset * (1 - END_SCALE);
final float offsetScale = 1 - diffScaledOffset;
contentView.setScaleX(offsetScale);
contentView.setScaleY(offsetScale);

// Translate the View, accounting for the scaled width
final float xOffset = drawerView.getWidth() * slideOffset;
final float xOffsetDiff = contentView.getWidth() * diffScaledOffset / 2;
final float xTranslation = xOffset - xOffsetDiff;
contentView.setTranslationX(xTranslation);


}

最佳答案

问题是抽屉的高度。所以它投下了阴影。您可以通过将其设置为 0 来摆脱它。

mDrawerLayout.setDrawerElevation(0);

或者通过xml

<android.support.design.widget.NavigationView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:elevation="0dp"
app:menu="@menu/navigation_menu" />

关于android - 抽屉阴影没有被移除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48740427/

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