是否有可能改变Android背景黑色?

时间:2012-02-22 17:33:50

标签: android colors background default

在切换活动时是否可以更改背景颜色? 我的意思是黑色的颜色,当一个活动消失而第二个出现之前。感谢。

2 个答案:

答案 0 :(得分:0)

您可以按如下方式更改所使用的主题:

application android:icon="@drawable/icon" android:label="@string/app_name"
    android:theme="@android:style/Theme.Light" >

修改 的 如文档中所述:

<application android:theme="@style/CustomTheme">

然后调整你喜欢的主题:

<style>
<color name="custom_theme_color">#b0b0ff</color>
<style name="CustomTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@color/custom_theme_color</item>
<item name="android:colorBackground">@color/custom_theme_color</item>
</style>

这是主题http://developer.android.com/guide/topics/ui/themes.html#ApplyATheme

的链接

答案 1 :(得分:0)

您需要转到 activity_home.xml 在代码的起始行添加此背景参数以将屏幕设置为黑色

android:background="#ffffff"