use of com.owncloud.android.ui.dialog.SendFilesDialog in project android by nextcloud.
the class FileOperationsHelper method sendFiles.
public void sendFiles(Set<OCFile> files) {
// Show dialog
FragmentManager fm = fileActivity.getSupportFragmentManager();
FragmentTransaction ft = fm.beginTransaction();
ft.addToBackStack(null);
SendFilesDialog sendFilesDialog = SendFilesDialog.newInstance(files);
sendFilesDialog.show(ft, "TAG_SEND_SHARE_DIALOG");
}
Aggregations