标签: android
如何在Android中为textview提供背景色?
答案 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);