通過 Intent 共享多個檔案
作為引數傳遞給 share()
方法的字串列表包含你要共享的所有檔案的路徑。
它基本上遍歷路徑,將它們新增到 Uri,並啟動可以接受此類檔案的 Activity。
public static void share(AppCompatActivity context,List<String> paths) {
if (paths == null || paths.size() == 0) {
return;
}
ArrayList<Uri> uris = new ArrayList<>();
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_SEND_MULTIPLE);
intent.setType("*/*");
for (String path : paths) {
File file = new File(path);
uris.add(Uri.fromFile(file));
}
intent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris);
context.startActivity(intent);
}