In order to allow some adaptation of fonts between Phone and tablet, I looked at finding some way to
distinguish when the app is running on an Android phone or tablet, ignoring Apple Iphones and tablets
Examining screen sizes via height and widths, a crude measure was multiplying the screen width and
screen height and dividing by 10000, to come up with a global AREA figure.
I found that an area > 50 was the region of tablets and an area <50 was the region of phones.
So I decided on the best set of font sizes for the components in my tablet version of my app and similar for
my phone version, and just added code to set the fonts I need to set ffor the most sensitive components
according to the display size. Obviously, if you have to change the fonts of a lot of components, its more work,
but thats the way it goes!
Sorry I cant seem to get this image the size I want!
Hope this helps!