Skip to content

Instantly share code, notes, and snippets.

@nicoqueijo
Last active May 15, 2020 19:04
Show Gist options
  • Save nicoqueijo/c85c264a9115dee85c8321b81231d88d to your computer and use it in GitHub Desktop.
Save nicoqueijo/c85c264a9115dee85c8321b81231d88d to your computer and use it in GitHub Desktop.
class CurrencyRow(context: Context?, attrs: AttributeSet? = null) :
ConstraintLayout(context, attrs) {
val scrollableArea: ConstraintLayout
...
init {
LayoutInflater.from(context).inflate(R.layout.row_currency, this)
scrollableArea = findViewById(R.id.scrollable_area)
...
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment