Skip to content

Instantly share code, notes, and snippets.

@aemxn
Created August 23, 2017 15:50
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 aemxn/056f138dbd921bd4c4a9428cdd32c5bf to your computer and use it in GitHub Desktop.
Save aemxn/056f138dbd921bd4c4a9428cdd32c5bf to your computer and use it in GitHub Desktop.
Generic view base class
public interface RemoteView {
void showProgress();
void hideProgress();
void showUnauthorizedError();
void showEmpty();
void showError(String errorMessage);
void showMessageLayout(boolean show);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment