2012-01-03 54 views

回答

0

您將需要創建一個基於另一個主題(或從頭創建一個)。像這樣將在資源定義你的主題:

<?xml version="1.0" encoding="utf-8"?> 
<resources>  
    <style name="Base" parent="@android:style/Theme.Light.NoTitleBar"> 
     <item name="android:background">@android:color/white</item>    
    </style> 
</resources> 

然後,你需要將其應用到應用程序在你的清單:

<application android:icon="@drawable/icon" android:label="@string/app_name" android:theme="@style/Base"> 
+0

您好,我需要的按鈕,當我按下設備上的菜單鍵有白色背景。我的菜單充氣器中的每個項目都有黑色,我需要白色,因爲我的圖標圖像是白色的,而且我想混合按鈕。 – user1121322 2012-01-03 23:47:26

+0

看到我以前的答案。你發現了什麼?你有什麼問題嗎? – sfratini 2012-01-03 23:57:34