我正在尝试使用以下代码在 styles.xml 中全局设置背景
样式.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Light" >
<item name="android:background">@drawable/background</item>
</style>
</resources>
我还在 AndroidManifest.xml 文件中添加了它
<application android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme">
....
</application>
但是图像没有显示出来。我在所有可绘制文件夹中都有图像。