tags:

views:

101

answers:

2

how to give background colour to textview in android?

A: 

This might be of help to you..

link text

Richie
+1  A: 
textView.setBackgroundResource(resourceId) //from resource

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

for custom colors

int color = Color.rgb(int red, int green, int blue);
Tawani
thnxs for ur help.Its working
deepthi