如何将视图的底色设置为白色

发布于 2024-11-06 03:05:41 字数 901 浏览 0 评论 0原文

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

@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>

I want to set background color of view to "white" but it is black. How do I do this? I tried it that way:

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

and main.xml file is...

<?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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

她如夕阳 2024-11-13 03:05:41

在您的 LinearLayout 中简单设置 android:background="#ffffff"

Simple set android:background="#ffffff" in your linearLayout.

柠北森屋 2024-11-13 03:05:41

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

yes try this root.setBackgroundColor(Color.WHITE);

烧了回忆取暖 2024-11-13 03:05:41

使用

root.setBackgroundColor(Color.WHITE);

而不是android.R.color.white

Use

root.setBackgroundColor(Color.WHITE);

instead of android.R.color.white

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文