Skip to content

Instantly share code, notes, and snippets.

@Garyteck
Created August 14, 2020 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Garyteck/8841a4195e46f6e7ed7eb6a8d249fc7d to your computer and use it in GitHub Desktop.
Save Garyteck/8841a4195e46f6e7ed7eb6a8d249fc7d to your computer and use it in GitHub Desktop.
Crypto Adapter
class CryptoAdapter : PagingDataAdapter {
fun bind(cryptoCurrency : CryptoCurrency?) {
cryptoCurrency?.let {
cryptoName.text = it.name
cryptoSymbol.text = it.symbol
cryptoPrice.text = ...
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment