Answers for "how to get device height and width in android android studio"

1

android get screen width and height

DisplayMetrics displayMetrics = getResources().getDisplayMetrics();
float dpHeight = displayMetrics.heightPixels / displayMetrics.density;
float dpWidth = displayMetrics.widthPixels / displayMetrics.density;
Log.d("MyHeight", dpHeight+"");
Log.d("MyWidth", dpWidth+"");
Posted by: Guest on May-31-2021
0

how to get width android

Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
int height = size.y;
Posted by: Guest on December-11-2020

Code answers related to "how to get device height and width in android android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language