如何将视图的底色设置为白色
我想将视图的背景颜色设置为“白色”,但它是黑色的。我该怎么做?我这样尝试过:
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在您的 LinearLayout 中简单设置
android:background="#ffffff"
。Simple set
android:background="#ffffff"
in your linearLayout.是的,试试这个
root.setBackgroundColor(Color.WHITE);
yes try this
root.setBackgroundColor(Color.WHITE);
使用
而不是
android.R.color.white
Use
instead of
android.R.color.white