I'm creating a custom TextView by using TextPaint in the onDraw() method. however this is causing severe problems for my app. performance wise I mean.
The onDraw() method gets called over and over again . but i just want it to draw once :(
i tried using setDrawingCacheEnabled(true); but no effect there.
There is also a viewflipper with textviews in the main layout rotating automaticly, could this be causing everything to redraw ?
can anyone give me some pointers here ?