Guest User

Untitled

a guest
Feb 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. fab_add_note.setOnClickListener {
  2. NoteDialog(window.decorView as ViewGroup, this)
  3. .add(preExecute = {
  4. note_list_progress.visibility = ProgressBar.VISIBLE
  5. }, created = {
  6. notes.add(it)
  7. configureList()
  8. }, finished = {
  9. note_list_progress.visibility = ProgressBar.GONE
  10. })
  11. }
Add Comment
Please, Sign In to add comment