私はこれを機能させようとしてきました。私は運がない多くの例を経験しました。問題は、たとえば電子メール クライアントを使用して画像を共有しようとすると、画像が添付されないことです。外部ストレージを使用しているときにこれを機能させることができましたが、内部ストレージの方が私のニーズに適しています。
ボタンをクリックすると、画像が内部ストレージに保存され、その直後に共有されますが、画像がありません。
これは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"/>