Guest User

Untitled

a guest
Dec 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package com.anubhavmalikdeveloper.letsmvp.Contracts;
  2.  
  3. import android.content.Context;
  4.  
  5. public interface GeneralViewContract {
  6.  
  7. void showProgress(boolean show); // to toggle the progressbar
  8.  
  9. void showSnackbar(Context context, String message, int length); // to show snackbar
  10.  
  11. void showToast(Context context, String message, int length); // to show toast
  12.  
  13. }
Add Comment
Please, Sign In to add comment