Skip to content

Instantly share code, notes, and snippets.

@stanch
Created September 28, 2013 22:18
Show Gist options
  • Save stanch/6747320 to your computer and use it in GitHub Desktop.
Save stanch/6747320 to your computer and use it in GitHub Desktop.
l[LinearLayout](
w[TextView] ~> text("Howdy?") ~> TextSize.large ~>
// this will automatically use LinearLayout.LayoutParams
layoutParams(MATCH_PARENT, WRAP_CONTENT),
w[ImageView] ~> hide ~> { x ⇒
// custom initialization
x.setScaleType(ImageView.ScaleType.FIT_START)
x.setAdjustViewBounds(true)
}
) ~> vertical ~> padding(all = 8 dp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment