Greetings all,
I am on my first venture with Android, and I have a question:
I am trying to draw things by using the touch screen. I get everything to draw but in order to force the app to draw each time I am calling View.invalidate(); This clears the screen and force calls View.onDraw(); which is what i want, but I do not want the screen to be cleared every time. So I am looking for a method call that will call View.onDraw(), but will not clear the screen like View.invalidate();
Does this exist? Or would I simply call View.onDraw() from within my View.OnTouchListener.onTouch()?
Thanks!
-Nick



