Created
May 3, 2017 10:24
-
-
Save davidvavra/77c47875f9f758f872e13dd2987bfda7 to your computer and use it in GitHub Desktop.
This file contains 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
private var mAdapter: RecyclerAdapter<Transaction>? = null | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
mAdapter = RecyclerAdapter(R.layout.item_transaction) | |
} | |
fun updateTransactions() { | |
mAdapter!!.notifyDataSetChanged() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment