In one of my Activities I'd like to adjust an amount of textual content according to current screen size. What metric should I rely on?
Just width in pixels seems not too reliable since font scaling can be very different. On the other hand DisplayMetrics
's DENSITY_280, DENSITY_400 ...
seem too broad. Is there any normalized metric available like width_in_pixels * font_scaling
?
Just in case: My min SDK verion is 15 (4.0.3)