In my application I must use a smaller font for the medium density devices. Is it possible to specify that?
|
You should use styles, then you can have separate folders "values" (default) "values-hdpi" (high density) "values-mdpi" (medium density) and so on and put your style file with correct textSize values in each folder as needed. Then, when you are in medium density device it will pick the file in "values-mdpi" folder if exists or in "values" if not, and the same for high density etc... This same principle applies to al "res" subfolders (drawables, values, etc...) |
|||||||||||||
|
|
yes, for implementing an universal app which will be working for all resolution. You should configure multiple drawables & corresponding layouts. eg. drawables:- drawable-ldpi drawable-mdpi drawable-hdpi layouts:- layout-small layout-medium layout-large then you can change according to your resolution required for Device. Android supports internal configuration for Density factor of various Screen's resolution. the device can take itself as appropriate drawable & corresponding layout. you dont need to adjust any line of code in your src files. |
|||
|
|
|
Specify all your fonts using dips (e.g. Edit: Here's comparison of sp/dp from the Android docs:
|
|||||||||||||||||||
|