mirror of
https://github.com/SimpleMobileTools/Simple-File-Manager.git
synced 2025-06-05 22:09:15 +02:00
show a success toast after successufull copy
This commit is contained in:
@ -495,11 +495,12 @@ public class ItemsFragment extends android.support.v4.app.Fragment
|
||||
public void copySucceeded(File file) {
|
||||
rescanItem(file);
|
||||
fillItems();
|
||||
Utils.Companion.showToast(getContext(), R.string.copying_success);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void copyFailed() {
|
||||
Utils.Companion.showToast(getContext(), R.string.copy_failed);
|
||||
Utils.Companion.showToast(getContext(), R.string.copying_failed);
|
||||
}
|
||||
|
||||
public interface ItemInteractionListener {
|
||||
|
Reference in New Issue
Block a user