2014-03-26 61 views
1

我看到这个已经被多次处理的东西,但是我没有找到对我有用的答案。
在我的应用程序中,我使用Holo主题,现在我想在所有活动中以全屏方式显示背景图像。Android图像Holo Theme中的背景

我把这个行:
<style name="AppBaseTheme" parent="android:Theme.Holo">
<item name="android:background">@drawable/sfondo1</item>

在文件style.xml,我有这样的:在清单

<application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/Theme.Holo" 
    > 

,但它不工作。

+1

创建一个新的主题,粘贴全息性能和里面添加你的背景...检查此http://开发商.android.com /引导/主题/ UI/themes.html – Angudroid

回答

0

尝试在您的清单文件中使用此

<application 
android:allowBackup="true" 
android:icon="@drawable/ic_launcher" 
android:label="@string/app_name" 
android:theme="@style/AppBaseTheme"> 

,而不是

<application 
android:allowBackup="true" 
android:icon="@drawable/ic_launcher" 
android:label="@string/app_name" 
android:theme="@style/Theme.Holo" 
>