Skip to content

Instantly share code, notes, and snippets.

@Guilherme-HRamos
Created July 28, 2019 03:03
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 Guilherme-HRamos/fa37ec8e9aca70dd25f6721b4456f346 to your computer and use it in GitHub Desktop.
Save Guilherme-HRamos/fa37ec8e9aca70dd25f6721b4456f346 to your computer and use it in GitHub Desktop.
Medium - Android/Java Interfaces like a Boss! - Backwards Compatibility New Method ll
public interface BaseViewContract {
void onShowLoading();
void onHideLoading();
void onShowError(String error);
default void onShowToast(String message) {
Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show();
}
Context getApplicationContext();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment