tags:

views:

38

answers:

2

hi, I have specified textSize="3mm" but when I run the code on the droid the text is much smaller. I looks like the size has been specified in px. I am using minSdk=4 and anydensity = "true". So it seems like if I ask for 3mm I should get 3mm, right?

Thanks in advance.

+1  A: 

Android recommends using sp (scale independent) units for text sizes. Linky

Mayra
+1  A: 

There were problem with the Droid display drivers reporting the wrong density. This made units like mm not work properly.

Romain Guy
sp works, thanks
Burke Murray