当前位置:   article > 正文

Android继承AppCompatActivity中一开始显示标题栏,后来不显示标题栏了,设置好菜单也无法显示了。_theme.material3.daynight.noactionbar

theme.material3.daynight.noactionbar

在清单文件AndroidManifest.xml中如下两句:

android:theme="@style/Theme.xxxx"
tools:replace="android:theme"

打开\res\values\themes.xml文件:

<!-- Base application theme. -->
    <style name="Base.Theme.xxxx" parent="Theme.Material3.DayNight.NoActionBar">
        <!-- Customize your light theme here. -->
        <!-- <item name="colorPrimary">@color/my_light_primary</item> -->
    </style>

将其中的"Theme.Material3.DayNight.NoActionBar"改为

Theme.MaterialComponents.DayNight.DarkActionBar

问题解决,标题栏和下拉菜单显示正常。

特别注意,要在<style name="Base.Theme.xxxx"中修改,而不是<style name="Theme.xxxx"中修改。

另一种办法,直接在清单文件AndroidManifest.xml中设置主题:

android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/257893
推荐阅读
相关标签
  

闽ICP备14008679号