如何设置视图的背景颜色 [英] How to set background color of a View

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

问题描述

我想设置一个视图的背景颜色(在这种情况下,一个按钮)。

I'm trying to set the background color of a View (in this case a Button).

我用这个code:

// set the background to green
v.setBackgroundColor(0x0000FF00 );
v.invalidate();

它会导致按钮从屏幕上消失。我在做什么错,什么是改变背景颜色上的任何视图的正确方法是什么?

It causes the Button to disappear from the screen. What am I doing wrong, and what is the correct way to change the background color on any View?

感谢。

推荐答案

您做您的按钮透明。第一个字节是阿尔法。

You made your button transparent. The first byte is the alpha.

尝试 v.setBackgroundColor(0xFF00FF00);

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

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