Skip to content

Instantly share code, notes, and snippets.

@shaon2016
Created June 27, 2018 05:11
Show Gist options
  • Save shaon2016/7c840a62f26d256386fac2bed1edb51c to your computer and use it in GitHub Desktop.
Save shaon2016/7c840a62f26d256386fac2bed1edb51c to your computer and use it in GitHub Desktop.
This will calculate the height or width at runtime
private fun measureFoodImageLayoutAtRuntime() {
// here adfAppBar is the root layout
val layoutParam = afdAppBar?.layoutParams as CoordinatorLayout.LayoutParams
layoutParam.height = U.getScreenHeight(this) / 3
afdAppBar?.layoutParams = layoutParam
afdAppBar?.requestLayout()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment