我一直在尝试并试图让它发挥作用。我没有运气,经历了很多例子。问题是当我尝试共享图像时没有附加图像,例如,使用电子邮件客户端。我设法在使用外部存储时使其工作,但内部存储更适合我的需求。
我单击一个按钮,然后图像被保存到内部存储器中,之后它被共享但没有图像。
这来自Activity
类:
int width = size.x;
int height = size.y;
Bitmap shareBmp = Bitmap.createBitmap(screenBmp, 0, 0, width, height);
ContextWrapper wrapper = new ContextWrapper(getApplicationContext());
File directory = wrapper.getDir("images", Context.MODE_PRIVATE);
File filePath = new File(directory, "share.png");
FileOutputStream fos;
try
{
fos = new FileOutputStream(filePath);
shareBmp.compress(Bitmap.CompressFormat.PNG, 90, fos);
fos.close();
}
catch (Exception aE){}
Uri uri = Uri.parse("content://com.example.Test/share.png");
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_STREAM, uri);
intent.setType("image/png");
startActivity(Intent.createChooser(intent, "Share Image"));
这是ImageProvider
班级:
public class ImageProvider extends ContentProvider
{
@Override
public ParcelFileDescriptor openFile(Uri aUri, String aMode) throwsFileNotFoundException
{
File file = new File(getContext().getFilesDir(), aUri.getPath());
if (file.exists())
{
return (ParcelFileDescriptor.open(file, ParcelFileDescriptor.MODE_READ_ONLY));
}
throw new FileNotFoundException(aUri.getPath());
}
@Override
public boolean onCreate()
{
return false;
}
@Override
public int delete(Uri aUri, String aSelection, String[] aSelectionArgs)
{
return 0;
}
@Override
public String getType(Uri aUri)
{
return null;
}
@Override
public Uri insert(Uri aUri, ContentValues aValues)
{
return null;
}
@Override
public Cursor query(Uri aUri, String[] aProjection, String aSelection, String[] aSelectionArgs, String aSortOrder)
{
return null;
}
@Override
public int update(Uri aUri, ContentValues aValues, String aSelection, String[] aSelectionArgs)
{
return 0;
}
}
这来自清单:
<provider
android:name=".ImageProvider"
android:authorities="com.example.Test"
android:exported="true"/>
答案 0 :(得分:0)
只有您的应用可以在其应用特定的-private-存储中查看/读取/写入文件。所以你不能要求其他应用程序分享它,因为他们甚至不能“看到”那些文件。