Answers for "android get screen width and height programmatically kotlin"

3

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
1

how to set view width programmatically in android

View view = findViewById(R.id.nutrition_bar_filled);
LayoutParams layoutParams = view.getLayoutParams();
layoutParams.width = newWidth;
view.setLayoutParams(layoutParams);
Posted by: Guest on April-19-2020

Code answers related to "android get screen width and height programmatically kotlin"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language