Last active
May 15, 2020 19:04
-
-
Save nicoqueijo/c85c264a9115dee85c8321b81231d88d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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