Warm tip: This article is reproduced from serverfault.com, please click

How to set background color of an Activity to white programmatically?

发布于 2011-01-21 17:13:17

How can I set the background color of an Activity to white programatically?

Questioner
SJS
Viewed
0
community wiki 2016-10-25 15:48:27

Get a handle to the root layout used, then set the background color on that. The root layout is whatever you called setContentView with.

 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));