我試圖找到它,也許這太明顯了:)但如何命名爲「默認窗口背景顏色」的資源(蒼白例如,在全光燈中使用白色)用於xml設計?Android什麼是當前方案/風格的默認窗口背景顏色的資源名稱
android:background="<help me out here>"
當然,只是不給background屬性都將重置,我知道,但一些形狀,我們需要這個背景色填充顏色,所以我需要知道它的資源名稱。 在此先感謝!
我試圖找到它,也許這太明顯了:)但如何命名爲「默認窗口背景顏色」的資源(蒼白例如,在全光燈中使用白色)用於xml設計?Android什麼是當前方案/風格的默認窗口背景顏色的資源名稱
android:background="<help me out here>"
當然,只是不給background屬性都將重置,我知道,但一些形狀,我們需要這個背景色填充顏色,所以我需要知道它的資源名稱。 在此先感謝!
發現了它。根據方案,它分別是@android:color/background_light @android:color/background_dark。
試試這個
<style name="CustomMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="colorPrimary">@color/colorPrimary</item> //primary color of action bar
<item name="colorPrimaryDark">@color/colorPrimaryDark</item> //dark is the background color
<item name="android:textColorPrimary">@color/textColorPrimary</item>//text color
<item name="android:windowBackground">@color/windowBackground</item> //background color of the app
希望它helps.Thanks參考這裏我發現了一個美麗的教程http://coderzpassion.com/android-working-with-material-design/
感謝downvoting ...爲什麼我配得上這個? OO – Grisgram