tags:

views:

48

answers:

1

In Android, is there a similar method to the repaint() in java?

+2  A: 

To force a view to draw, call invalidate().

Pentium10
yes, i came across that but couldnt figure out how to use it.. wat oblect do i use to call it?
Nanda
the view you want to repaint, you get a reference to the view by findViewById
Pentium10