在我的应用程序中,我想从文件夹中获取加密图像并将其显示在画廊中,当我单击要发送解密图像的图像时,我正在使用共享图像的代码。
boolean share = false;
share = true;
if (share)
{
try
{
List<String> FileList = tFileList;
Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("*/*");
sendIntent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
System.out.println("Global Position"+globalPosition);
final File file1 = new File(FileList.get(globalPosition).toString());
Uri uri = Uri.fromFile(file1);
Log.e("Path", "" + uri);
sendIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(sendIntent, ""));
share = true;
} catch (Exception e)
{
share = false;
}
}
else
{
share = false;
Log.e("Path", "File Error");
}
return share;
- 此代码的问题在于它从 sd 卡中的位置发送实际的加密图像。
- 我想发送存储在名为 globalBitmap 的位图中的数据。