我正在尝试使用 .apk(在 res/drawable 中)从应用程序的 .apk 中共享图像Intent
。按照 developer.android.com 文档([1]、[2]、[3]),我认为我需要执行以下操作:
- 从 res/drawable 作为 a 获取图像
Bitmap
并将其保存在应用程序的内部存储中, - 使用 a
FileProvider
,获取图像的内容 uri, - 创建一个
Intent
withACTION_SEND
动作并将 uri 添加为流 - 将
Intent.FLAG_GRANT_READ_URI_PERMISSION
标志添加到意图
在实践中,我刚刚创建了默认的“Hello World”应用程序,将主活动中的文本视图替换为触发图像共享的按钮,并尝试从 res/drawable 共享标准 ic_launcher.png 图像。
一切运行良好,直到我在选择器对话框中选择要与之共享图像的其他应用程序。无论我选择什么(Adobe Reader、Facebook、MMS),接收图像的应用程序都会崩溃并在其日志中报告以下错误:
06-01 02:06:53.863: W/ActivityManager(356): Permission denied: checkComponentPermission() owningUid=10099
06-01 02:06:53.953: E/AndroidRuntime(21961): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.adobe.reader/com.adobe.reader.services.cpdf.ARCreatePDFActivity}: java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it.
使用 Android 调试监视器,我可以看到图像文件是在应用程序的内部存储中创建的rw
,拥有所有者权限,其他人没有权限。
更新 我终于有时间在手机(4.3)和平板电脑(4.2)上更彻底地测试了。在这两种设备上,我得到了完全相同的结果。日志中始终会出现“Permission Denied”警告,但最终结果可能因应用而异:
- 标准 Android 电子邮件应用程序 - 电子邮件发送时没有错误/崩溃,但不包含附件,
- Gmail 应用程序 - 发送带有 附件的电子邮件(这是我发现上述代码有效的唯一情况),
- Facebook、Twitter、Adobe Reader - 这些都在选择器对话框中选择时崩溃;
这是否意味着从应用程序的内部存储中共享(图像)资源没有“标准”方式,并且共享逻辑需要根据接收应用程序进行自定义?
AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.imagesharetest.share" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name="com.imagesharetest.share.SharingActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.imagesharetest.share.fileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
</application>
</manifest>
资源/文件路径.xml:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<files-path
name="shareImages"
path="images/" />
</paths>
活动 xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Go!"
android:id="@+id/shareButton"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:onClick="shareImage"/>
</RelativeLayout>
活动.java:
package com.imagesharetest.share;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.content.FileProvider;
import android.view.View;
import java.io.File;
import java.io.FileOutputStream;
public class SharingActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_sharing);
}
public void shareImage(View v) {
Uri icLauncherFileURI = FileProvider.getUriForFile(
SharingActivity.this, "com.imagesharetest.share.fileprovider",
getICLauncherBitmapAsInternalFile());
Intent shareIntent = getShareIntentFor(icLauncherFileURI);
startActivity(Intent.createChooser(shareIntent, "Sending ic_launcher..."));
}
private File getICLauncherBitmapAsInternalFile() {
Bitmap icLauncherBitmap = BitmapFactory.decodeResource(
getResources(), R.drawable.ic_launcher);
File imagePath = new File(getFilesDir(), "images");
imagePath.mkdirs();
File icLauncherFile = new File(imagePath, "shared_image.png");
saveBitmapAsFile(icLauncherBitmap, icLauncherFile);
return icLauncherFile;
}
private void saveBitmapAsFile(Bitmap bmp, File file) {
try {
FileOutputStream fos = new FileOutputStream(file);
// FileOutputStream fos = SharingActivity.this.openFileOutput(file.getName(), Context.MODE_WORLD_READABLE);
bmp.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.flush();
fos.close();
} catch (java.io.IOException e) {
e.printStackTrace();
}
}
private Intent getShareIntentFor(Uri contentUri) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
shareIntent.setType("image/png");
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
return shareIntent;
}
}