Answers for "how get the width and height of the screen 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

Code answers related to "how get the width and height of the screen android studio"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language