[android-developers] Re: Vertical text on canvas

2011-04-15 Thread Numeron
subpixel and antialiasing are both off for drawing the text, and the image is even drawn with a paint with both these off though it still appears antialiased anyway. Same result as drawing the image with a null paint. I think that the canvas rotate uses its interpretation algorithm even for ort

[android-developers] Vertical text on canvas

2011-04-14 Thread Numeron
rotate would produce a perfect result regardless. -Numeron -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
Sorry for above post, I hit the wrong button... On Saturday, April 9, 2011 1:18:09 PM UTC+9:30, Numeron wrote: > > > > On Saturday, April 9, 2011 1:53:36 AM UTC+9:30, Dianne Hackborn wrote: >> >> On Fri, Apr 8, 2011 at 1:16 AM, Numeron wrote: >> >>> I wo

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
On Saturday, April 9, 2011 1:53:36 AM UTC+9:30, Dianne Hackborn wrote: > > On Fri, Apr 8, 2011 at 1:16 AM, Numeron wrote: > >> I wouldnt have thought it would work like a busy method if its adding >> itself to something like an event queue or whatever, but I'l

Re: [android-developers] Smoothing out Handler sent repaint events

2011-04-08 Thread Numeron
x27;ve poured through the code and pulled out many unnessecary temporary objects, but it will still need further work - thanks for that tip! -Numeron -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to

[android-developers] Smoothing out Handler sent repaint events

2011-04-07 Thread Numeron
CREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); view = new MyView(this); this.setContentView(view); new RefreshHandler().run(); } class RefreshHandler extends Handler implements Runnable{ @Override public void run(){ view.invalidate(); this.post(this); } } } -Nu