Android 整个应用程序中没有提升

Android elevation not there throughout whole app

我的 Android 应用程序有问题:海拔高度在整个应用程序中都不起作用。我的 CardViews 没有提升,我的 Toolbars 没有这个小提升,你也看不到我的 BottomNavigationView 的边缘,因为它是白色的,没有 Effect,所以没有线。

你知道为什么会这样吗?我已经用谷歌搜索过这个,但我从来没有发现任何影响整个应用程序的东西。如果您需要更多信息,请询问,我很乐意提供。

一些(可能)重要的细节 - 我所有的活动和片段都使用 "AppTheme.NoActionBar"

非常感谢任何建议

我的styles.xml:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>

    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat" />

<style name="AppTheme.NoActionBar.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.NoActionBar.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

<style name="AppTheme.BottomSheetDialog" parent="Theme.Design.Light.BottomSheetDialog">
    <item name="bottomSheetStyle">@style/AppTheme.BottomSheetStyle</item>
</style>

<style name="AppTheme.BottomSheetStyle" parent="Widget.Design.BottomSheet.Modal">
    <item name="behavior_hideable">true</item>
    <item name="behavior_skipCollapsed">true</item>
</style>

<!--<style name="myDialog" parent="Theme.AppCompat.Light.Dialog">
    <item name="android:windowNoTitle">true</item>
</style>-->



<!-- added from new -->
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="android:windowBackground">@drawable/splash_background</item>
</style>

<style name="CardView.Round" parent="Base.CardView">
    <item name="cardCornerRadius">10dp</item>
    <item name="cardElevation">3dp</item>
</style>

<style name="Borderless.Button.Accent" parent = "Borderless.Button">
    <item name="android:textColor">@color/colorAccent</item>

</style>

<style name="Borderless.Button" parent="Widget.AppCompat.Button.Borderless">
    <item name="android:textStyle">bold</item>
    <item name="android:textSize">18sp</item>
</style>

您需要在 AndroidManifest.xml 文件上设置 android:hardwareAccelerated="true" 属性