我有一个Activity
,用户可以在其中共享raw
文件夹中的图片。
原始文件夹有70个图像,全部按字母顺序命名。第一个是R.raw.recipe01
,最后一个是R.raw.recipe70
。
我得到的图片int
我希望与Bundle
分享,我有一个方法可以将图片从raw
文件夹复制到可访问的文件中。
我在成功运作的startActivity(createShareIntent());
ActionBar
中致电MenuItem
。
问题
共享intent
将始终选择R.raw.recipe01
作为图片,即使int
中的Bundle
用于例如R.raw.recipe33
的图片。
我在下面分享了我的代码。谁能发现我做错了什么?
CODE:
private int rawphoto = 0;
private static final String SHARED_FILE_NAME = "shared.png";
@Override
public void onCreate(Bundle savedInstanceState) {
Bundle bundle = getIntent().getExtras();
rawphoto = bundle.getInt("rawphoto");
int savedphoto = rawphoto;
// COPY IMAGE FROM RAW
copyPrivateRawResourceToPubliclyAccessibleFile(savedphoto);
private Intent createShareIntent() {
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("image/*");
shareIntent.putExtra(Intent.EXTRA_TEXT, "IMAGE TO SHARE: ");
Uri uri = Uri.fromFile(getFileStreamPath("shared.png"));
shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
return shareIntent;
}
private void copyPrivateRawResourceToPubliclyAccessibleFile(int photo) {
System.out.println("INT PHOTO: " +photo);
InputStream inputStream = null;
FileOutputStream outputStream = null;
try {
inputStream = getResources().openRawResource(photo);
outputStream = openFileOutput(SHARED_FILE_NAME,
Context.MODE_WORLD_READABLE | Context.MODE_APPEND);
byte[] buffer = new byte[1024];
int length = 0;
try {
while ((length = inputStream.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
} catch (IOException ioe) {
/* ignore */
}
} catch (FileNotFoundException fnfe) {
/* ignore */
}
finally {
try {
inputStream.close();
} catch (IOException ioe) {
}
try {
outputStream.close();
} catch (IOException ioe) {
}
}
}
答案 0 :(得分:1)
删除Context.MODE_APPEND
,以便在文件已存在时覆盖该文件。