嗨,我已经为我的 android 应用程序创建了自己的自定义窗口标题栏,但是现在每次打开应用程序时,我都会看到默认标题栏,但我尝试放置透明背景,但我的代码不起作用:
custom_title.xml:
<resources>
<style name="CustomWindowTitleBackground">
<item name="android:background">@android:color/transparent</item>
</style>
<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleSize">35dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>
任何帮助不胜感激,非常感谢。