Last active
November 18, 2016 10:18
-
-
Save aballano/deaef684229edcd3efb6bbcc85e015eb 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
@Override public Observable showDeleteFailedWithRetry() { | |
Snackbar snackbar = Snackbar.make(rootView, "Can't delete chat", Snackbar.LENGTH_LONG); | |
Observable<Integer> observable = RxSnackbar.actionClicked(snackbar, "Retry")); | |
snackbar.show(); | |
return observable; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment