-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
@OverRide
public void callbackWithReturnValue(Boolean result) {
String message = result ? "Success" : "Failed!";
Toast.makeText(this,message,Toast.LENGTH_SHORT).show();
}
@Override
public void onProgressUpdate(Boolean... booleans) {
Toast.makeText(this, booleans[0] ? "We started writing" : "We could not write!",Toast.LENGTH_SHORT).show();
}
@Override
public void onError(Exception e) {
Toast.makeText(this,e.getMessage(),Toast.LENGTH_SHORT).show();
}
In this code @OverRide doesnt work (my IDE doesnt let me do it)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels