Added option to select default folder

This commit is contained in:
M66B
2023-01-27 09:56:32 +01:00
parent a2aa2d6a51
commit 5cfbeafa82
14 changed files with 137 additions and 34 deletions

View File

@@ -1170,7 +1170,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_TITLE, filename);
Helper.openAdvanced(intent);
Helper.openAdvanced(context, intent);
if (intent.resolveActivity(context.getPackageManager()) == null) { // // system/GET_CONTENT whitelisted
ToastEx.makeText(context, R.string.title_no_saf, Toast.LENGTH_LONG).show();