9
我想分享一個文件中使用共享意向(.PDF,.apk文件等),我搜索谷歌,但我只找到了代碼共享圖片如何共享文件中的Android編程方式
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
Uri screenshotUri = Uri.parse(path);
sharingIntent.setType("image/png");
sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri);
startActivity(Intent.createChooser(sharingIntent, "Share image using"));
請幫助解決此問題