> How do I figure out how many pixels equals X display independent pixels?
This shall do the sufficient math: float screenDensity = getResources().getDisplayMetrics().density; float widthDip = 90.0f; int areaWidthPx = (int)( widthDip * screenDensity + 0.5f ); -- 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

