2014-03-26 64 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" 
>