分享图片代码 我想找一个代码示例,它允许我通过与最大数量的Android设备兼容的Android Intent,ACTION_SEND共享图像。
我的代码如下所示:
public void onClickShare(View view) {
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(SavedCardActivity.sharingcardpath)));
startActivityForResult(Intent.createChooser(intent, "Share"), 1);
}
目前,此代码不适用于所有移动设备,只适用于某些移动设备,尤其是Android版本 6.0 7.0 7.1 8.0 的设备,我不知道此代码是否正确
我希望这样的代码适用于所有设备。
答案 0 :(得分:0)
如果targetSdkVersion高于24,则使用FileProvider授予访问权限。
使用以下代码在 res \ xml 中创建名为 provider_paths.xml 的xml文件:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
然后,您需要在应用程序标记
中的AndroidManifest.xml中添加Provider<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
现在让你的照片路径如下:
final File photoFile = new File(Environment.getExternalStorageDirectory().toString(), "/path/filename.png");
现在获取照片URI:
Uri photoURI = FileProvider.getUriForFile(SavedCardActivity.this,
BuildConfig.APPLICATION_ID + ".provider",
photoFile);
要分享,请使用以下代码:
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {
final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, photoURI);
getApplicationContext().startActivity(Intent.createChooser(shareIntent, "Share image using"));
} else {
final Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(photoFile));
startActivity(Intent.createChooser(shareIntent, "Share image using"));
}