我试图找到它,也许它太明显了:)但是如何在xml设计中使用名为“默认窗口背景颜色”(例如全白光中的浅白色)的资源?
android:background="<help me out here>"
当然,根本没有给出背景属性会重置,我知道,但是在某些形状上我们需要这种背景颜色作为填充颜色,所以我需要知道它的资源名称。 提前谢谢!
答案 0 :(得分:1)
找到它。它的@android:color / background_light分别是@android:color / background_dark,具体取决于方案。
答案 1 :(得分:0)
试试这个
<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
希望它有所帮助。谢谢参考这里我发现了一个很棒的教程http://coderzpassion.com/android-working-with-material-design/