I need to know the screen sizes of android devices to support multiple screen sizes application.
Here's a little function to know the inch size of your device in case you need it to support multisize screen :
public double getInchSize()
{
DisplayMetrics metrics = getResources().getDisplayMetrics();
return Math.hypot(metrics.widthPixels/metrics.xdpi, metrics.heightPixels/metrics.ydpi)
}
Hope it can help