gpt4 book ai didi

java - Android lollipop 5.0 上的工具栏阴影问题

转载 作者:行者123 更新时间:2023-12-02 03:03:05 26 4
gpt4 key购买 nike

我正在对我的应用程序进行最后的修改,并注意到运行 5.0 及更高版本的设备上工具栏上的奇怪行为。在低于 5.0 的设备上,我将其设置为工具栏的 backgroundDrawable 图像下方没有奇怪的线条,但在 5.0 及更高版本的设备上,工具栏似乎在图像后面可见。我尝试了很多方法,主要是在 stackoverflow 上找到的,但似乎没有任何效果。我尝试使用透明背景,但没有成功。我创建了带有透明背景的自定义主题,但这也不起作用。以下是图像: Bellow Lollipop Lollipop and above

代码:

   <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:background="?attr/colorPrimary"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolBar"
android:layout_width="match_parent"
android:layout_height="100dp"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:background="@android:color/transparent"
app:layout_scrollFlags="scroll|enterAlways">
<ImageView
android:id="@+id/icon"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_logo_final"
android:layout_gravity="center"
android:gravity="center"
android:layout_marginRight="50dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="15dp"
/>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:id="@+id/recyclerView">
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>

提前致谢。

最佳答案

尝试从工具栏中删除阴影:

 <style name="MyAppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>
</style>

还在AppBarLayout中设置app:elevation="0dp"以隐藏appbar中的阴影

关于java - Android lollipop 5.0 上的工具栏阴影问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42178871/

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