Re: [android-developers] A problem of drawing on WVGA screen

2010-01-07 Thread Dianne Hackborn
You need to update to support different densities. You are probably creating a bitmap in compatibility mode that would thus be the size of an HVGA screen, so when you draw it to your window it needs to be scaled up for the higher density screen. Once you use android:targetSdkVersion="4", the comp

[android-developers] A problem of drawing on WVGA screen

2010-01-07 Thread chaozh
Hi all: I wrote a reading software. I implemented the page turning effect when user tap the screen to turn to next/pre page. The display is ok on G1 (320X200 size) but it can not works well on Droid(480*854 size), the font looks a litter fuzzy, not clear as G1. I explain my codes for page turning: