Michael,

I just tied changing my code so it's exactly like what you posted, including the color scheme and how the Paint (font) object is constructed. Perfect again.

Is your application perhaps running in 320x480 compatibility mode? That would explain what you're seeing.

Make sure that you build with at least Android 1.6, and that in the manifest, you have either:

<uses-sdk android:minSdkVersion="4" />

or

<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true" />

These go inside the top-level <manifest> tag, *not* inside <application>

-- Kostya

26.12.2010 5:40, MichaelF пишет:
Kostya, thanks for your time. This is strange... I've literally pasted your code into my view, and the problem persists (same results for ARGB_4444 and ARGB_8888 configs). Here is a full working code: http://pastebin.com/damgWgXF, and here is the result: http://i.imgur.com/C2wdk.png. Am I missing something in my Paint? Could you check what this code gives you, or send me the full working code from your example?
Best, Michael
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


--
Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to