嗨,我想为我的应用程序设置背景图像,它已经有一个主题。
<application android:theme="@android:style/Theme.NoTitleBar" />
现在我已将代码更改为此
<style name="BackgroundImage" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">@drawable/background</item>
</style>
清单文件看起来像这样
<application android:theme="@style/BackgroundImage" />
现在背景图像已设置,但我以前的主题,即 Theme.NoTitleBar 不起作用。
预期的理想行为是背景图像和 Theme.NoTitleBar 应该工作。我该怎么办?