0

我正在尝试使用以下代码在 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>

但是图像没有显示出来。我在所有可绘制文件夹中都有图像。

4

1 回答 1

1

试试这个。

<style name="Theme" parent="@android:style/Theme">
    <item name="android:windowBackground">@drawable/background</item>
</style>
于 2012-11-02T11:50:09.617 回答