Skip to content

Instantly share code, notes, and snippets.

@Tarubali
Tarubali / ScreenUtility.java
Last active February 23, 2020 06:44
A simple java class to find out the independent pixel resolution of Android device
public class ScreenUtility {
private Activity activity;
private float dpWidth;
private float dpHeight;
public ScreenUtility(Activity activity) {
this.activity = activity;
Display display = activity.getWindowManager().getDefaultDisplay();