如何将视图的背景颜色设置为白色

时间:2011-05-06 11:05:18

标签: android background-color

我想将视图的背景颜色设置为“白色”,但它是黑色的。我该怎么做呢?我这样试过:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    View someView = findViewById(R.id.myScreen);

    // Find the root view
    View root = someView.getRootView();

    // Set the color
    root.setBackgroundColor(android.R.color.white);
}

和main.xml文件是......

<?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:id="@+id/myScreen" >

    <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/Button" android:text="Play Sound"></Button>
</LinearLayout>

3 个答案:

答案 0 :(得分:3)

在linearLayout中设置简单android:background="#ffffff"

答案 1 :(得分:3)

是的,试试这个root.setBackgroundColor(Color.WHITE);

答案 2 :(得分:1)

使用

root.setBackgroundColor(Color.WHITE);

而不是android.R.color.white