从内部存储分享屏幕截图 android

Share screenshot from internal storage android

我想分享存储在内部存储器中的屏幕截图,但我在分享时得到的只是一个空白屏幕。我开始知道另一个应用程序不能使用那些赢得应用程序私有数据的应用程序。这是我用来保存图像的代码:

File path = new File(getApplicationContext().getDir("Default", Context.MODE_ENABLE_WRITE_AHEAD_LOGGING),"myapp");
File directory = new File(path.getAbsolutePath());
directory.mkdirs();
String filename = "myapp.png";
File yourFile = new File(directory, filename);
try
{
 FileOutputStream out = new FileOutputStream(yourFile, true);
 bitmap.compress(Bitmap.CompressFormat.PNG, 90,out);
 out.flush();
 out.close();
 send(yourFile);
}catch (IOException e)
{
 e.printStackTrace();
}

分享意图是:

public void send(File path)
{
    Uri uri = Uri.fromFile(path);
    Log.d("uri", String.valueOf(path));
    Intent shareIntent = new Intent();
    shareIntent.setAction(Intent.ACTION_SEND);
    shareIntent.putExtra(Intent.EXTRA_SUBJECT, "My App");
    shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
    shareIntent.setType("image/*");
    shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    startActivity(Intent.createChooser(shareIntent, "Share via"));
}

图片保存路径,path值为:

/data/user/0/com.sample.myapp/app_Default/myapp/myapp.png

现在我如何确保屏幕截图可以访问并可供共享。

您获取的图片 URI 不是真实图片路径

要获取真实路径,请检查此

public String getRealPathFromURI(Uri uri) {
    Cursor cursor = getContentResolver().query(uri, null, null, null, null); 
    cursor.moveToFirst(); 
    int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA); 
    return cursor.getString(idx); 
}

只需传递此图片 uri 即可获得完整的图片路径

我是通过导出图片到外部存储然后分享来解决的。

 String url = null;
    try {
        url = MediaStore.Images.Media.insertImage(getContentResolver(), path.getAbsolutePath(), path.getName(), path.getName());
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }
    Uri uri = Uri.parse(url);