java - Android Studio 通过 Intent 共享自定义 View 图像不起作用

标签 java android canvas share custom-view

我在尝试通过单击按钮通过社交媒体(Facebook 等...)在我的一项 Activity 中共享自定义 View 时遇到了一些麻烦,但是当我按下按钮时没有任何反应并且 Logcat 没有显示任何错误。自定义 View 是 Canvas 绘图。下面是我的代码:

public class GraphActivity extends AppCompatActivity {
    DrawGraphTest drawGraphTest;

    private Button shareImage;

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_graph);
        drawGraphTest = (DrawGraphTest)findViewById(R.id.drawGraphTest);

        shareImage = (Button) findViewById(R.id.btnShare);
        shareImage.setOnClickListener(new View.OnClickListener(){
            @Override
            public void onClick(View v) {
                share(drawGraphTest);
            }
        });
    }

    @SuppressLint("SetWorldReadable")
    public void share(View view){
        Bitmap bitmap =getBitmapFromView(drawGraphTest);
        try {
            File file = new File(this.getExternalCacheDir(),"myImage.png");
            FileOutputStream fOut = new FileOutputStream(file);
            bitmap.compress(Bitmap.CompressFormat.PNG, 100, fOut);
            fOut.flush();
            fOut.close();
            file.setReadable(true, false);
            final Intent intent = new Intent(Intent.ACTION_SEND);
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
            intent.setType("image/png");
            startActivity(Intent.createChooser(intent, "Share image via"));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private Bitmap getBitmapFromView(View view) {
        Bitmap returnedBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(),Bitmap.Config.ARGB_8888);
        Canvas canvas = new Canvas(returnedBitmap);
        Drawable bgDrawable =view.getBackground();
        if (bgDrawable!=null) {
            //has background drawable, then draw it on the canvas
            bgDrawable.draw(canvas);
        }   else{
            //does not have background drawable, then draw white background on the canvas
            canvas.drawColor(Color.WHITE);
        }
        view.draw(canvas);
        return returnedBitmap;
    }

}

我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".GraphActivity">

    <g.myPackage.DrawGraphTest
        android:id="@+id/drawGraphTest"
        android:layout_width="wrap_content"
        android:layout_height="400dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0" />

    <Button
        android:id="@+id/btnShare"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.982" />

我还在我的 Manifest.xml 中启用了这些权限:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

单击按钮时,Logcat Verbose 显示:

2019-03-21 04:30:26.147 19176-19176/g.companieshouse.companieshouse D/errortag1: android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/g.companieshouse.companieshouse/cache/companieshouse.png exposed beyond app through ClipData.Item.getUri()

作为引用,我尝试实现的代码在下面的链接中,因为我是 Android Studio 的新手,所以我很难看到我在实现中哪里出错了,真的需要一些帮助!我能看到的唯一区别是,在链接中他们共享一个 ImageView ,而我共享一个自定义 View 。

https://www.logicchip.com/share-image-without-saving/

最佳答案

当应用程序向另一个应用程序公开 file:// Uri 时引发的异常。

不鼓励这种暴露,因为接收应用程序可能无法访问共享路径。例如,接收应用程序可能未请求Manifest.permission.READ_EXTERNAL_STORAGE 运行时权限,或者平台可能正在跨用户配置文件边界共享 Uri。

相反,应用程序应使用 content:// Uris,以便平台可以扩展接收应用程序访问资源的临时权限。

这仅针对以 Build.VERSION_CODES#N 或更高版本为目标的应用程序抛出。允许针对早期 SDK 版本的应用程序共享 file:// Uri,但强烈建议不要这样做。

可能的解决方案:android.os.FileUriExposedException: file:///storage/emulated/0/test.txt exposed beyond app through Intent.getData()

关于java - Android Studio 通过 Intent 共享自定义 View 图像不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55273662/

相关文章:

java - 适用于 Android 的语音生物识别技术

java.lang.IllegalStateException :Failed to transform class with name UnitySaveFCPort$PortMetric. 原因:[源错误]构造函数不能是静态的

android - 在 OpenCV Android 或 Java 中设置 SURF 算法参数

javascript - 在 HTML5 中将图像数组显示到 Canvas 的最佳方式?

javascript - 如何检测对象是否位于 Canvas 元素的坐标处?

javascript - FabricJS:对象控件在共同选择之前不起作用

java - 从两个不同的 Java 应用程序读取和写入 SQLite 数据库

java - 如何设置JButton点击时渐变颜色

java - 用作按钮的 Android 选项卡

java - 从 URL 解析 JSON 数据时出现问题