0

我正在尝试在我制作的应用程序中共享图像,该应用程序下载图像并将其写入文件。但是每当我尝试分享它时,它都会说无法上传文件或什么都不做。它没有出现在 logcat 中,所以我有点想知道如何修复它。

下载的图像显示在这样的图像视图中

        iView.setImageBitmap(im);
        String path = ContentFromURL.Storage + "/temp.jpg";
        File temp = new File(path);
        uri = Uri.fromFile(temp);
        iView.setImageURI(uri);

异步任务下载文件

    HttpURLConnection connection;
    try {
        String url = params[0];
        connection = (HttpURLConnection) new URL(url).openConnection();
        connection.setRequestProperty("Accept-Charset","UTF-8");
        connection.connect();
        InputStream input = connection.getInputStream();
        image = BitmapFactory.decodeStream(input);
        File temp = new File(Storage,"temp.jpg");
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        image.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        FileOutputStream fo = new FileOutputStream(temp);
        fo.write(bytes.toByteArray());
        fo.close();
        String path = temp.getAbsolutePath();
        Log.d("Asynch", "image shuould exist");
        SharePage.act.runOnUiThread(new Runnable()
        {
            public void run()
            {
                SharePage.setImage(image);
            }
        }
        );

创造意图

    twitterIntent = new Intent(Intent.ACTION_SEND);
    twitterIntent.setClassName("com.twitter.android",packageName);
    twitterIntent.setType("image/jpeg");
    twitterIntent.putExtra(Intent.EXTRA_STREAM, uri);
    startActivity(twitterIntent);

我知道我应该使用内置的 android 共享东西,但是当我尝试共享图像时它也不起作用

4

1 回答 1

0

问题是我试图存储图像的位置,我想拥有它,以便用户永远不会看到图像,并且在不再需要它时将其删除,但其他应用程序无权访问该目录。所以我已经把它移到了外部存储目录。

于 2013-08-07T15:18:35.827 回答