I need to set same UI in both device and emulator (In my application the UI changing in emulator and device)for that i need to know the screen resolution and density of the device . I don't know how to find out that .Let me know how to find out that in device.
Thanks,
Lakshmanan
DisplayMetrics displaymetrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(displaymetrics);
int screenHeight = displaymetrics.heightPixels;
int screenWidth = displaymetrics.widthPixels;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With