如何设置活动的背景颜色为白色编程? [英] How to set background color of Activity to white programmatically?

查看:188
本文介绍了如何设置活动的背景颜色为白色编程?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何设置一个活动的背景色为白色编程?

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

推荐答案

获取一个句柄使用的根布局,然后设置背景色。根布局是不管你用所谓的setContentView。

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

这篇关于如何设置活动的背景颜色为白色编程?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆