如何在android中为textview提供背景颜色?

时间:2009-12-01 05:14:16

标签: android

如何在Android中为textview提供背景色?

1 个答案:

答案 0 :(得分:3)

textView.setBackgroundResource(resourceId) //from resource

textView.setBackgroundColor(int color) // e.g. Color.RED

用于自定义颜色

int color = Color.rgb(int red, int green, int blue);