Answers:
获取所用根布局的句柄,然后在其上设置背景颜色。根布局是您使用setContentView调用的内容。
setContentView(R.layout.main);
// Now get a handle to any View contained
// within the main layout you are using
View someView = findViewById(R.id.randomViewInMainLayout);
// Find the root view
View root = someView.getRootView();
// Set the color
root.setBackgroundColor(getResources().getColor(android.R.color.red));
root.setBackgroundColor(getResources().getColor(android.R.color.red));
setContentView()
通话后,请在活动中添加这一行
getWindow().getDecorView().setBackgroundColor(Color.WHITE);
我更喜欢按主题着色
<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>
android:windowBackground
会显示片刻,然后短暂地显示布局背景色。因此,如果使用两种不同的颜色,它将在屏幕上闪烁。
?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
android:id="@+id/myScreen"
</LinearLayout>
换句话说,“ android:background”是您要更改的XML中的标签。
如果需要动态更新背景值,请参见以下内容:
在您的onCreate()
方法中:
getWindow().getDecorView().setBackgroundColor(getResources().getColor(R.color.main_activity_background_color));
另外,您还需要将一个名为XML的新XML文件添加到values文件夹,color.xml
并在其中分配一个新的color属性:
color.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="main_activity_background_color">#000000</color>
</resources>
请注意,您可以命名所需的color.xml
任何名称,但是通过代码将其称为R.color.yourId
。
编辑
由于getResources().getColor()
不推荐使用,请getWindow().getDecorView().setBackgroundColor(ContextCompat.getColor(MainActivity.this, R.color.main_activity_background_color));
改用。
您可以使用它来调用预定义的android颜色:
element.setBackgroundColor(android.R.color.red);
如果要使用自己的自定义颜色之一,则可以将自定义颜色添加到strings.xml,然后使用下面的颜色进行调用。
element.setBackgroundColor(R.color.mycolour);
但是,如果要在layout.xml中设置颜色,则可以修改以下颜色并将其添加到任何接受该颜色的元素中。
android:background="#FFFFFF"
View randview = new View(getBaseContext());
randview = (View)findViewById(R.id.container);
randview.setBackgroundColor(Color.BLUE);
为我工作。谢谢。
Button btn;
View root;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button)findViewById(R.id.button);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
root =findViewById(R.id.activity_main).getRootView();
root.setBackgroundColor(Color.parseColor("#FFFFFF"));
}
});
}