I searched for a while to find out what screen resolution I should consider before embarking on an Android app.
I found these things:
xlarge screens at least 960dp x 720dp
large screens of at least 640dp x 480dp
normal screens at least 470dp x 320dp
small screens at least 426dp x 320dp
What devices should be considered when developing Android applications?
but actually this is not what I wanted.
that I wanted to know if I should develop an application for each of these permissions or take into account only the most commonly used permission
or
if I don't use any hardcoded values ββfor width, height and margin, etc., I never need to worry about screen resolutions
or
How good is it: find the width and height of the device using the display metrics and create all the views according to these Dynamic values?
source share