如何为ImageView创建共享意图?

时间:2011-11-24 08:21:49

标签: java android android-intent imageview share

我正在创建一个照片应用程序,用户从图库中选择图像并将其显示在应用程序中心的图像视图中。我将如何为ImageView创建共享意图?

更新 共享意图正在运行,但是,无法共享图像,因为我无法将其保存到我选择的路径中。以下是我的代码。有什么帮助吗?

public void taptoshare(View v)
    {  
        View content = findViewById(R.id.myimage);
        content.setDrawingCacheEnabled(true);
            Bitmap bitmap = content.getDrawingCache();
            File file = new File("/DCIM/Camera/image.jpg");
            try 
            {
                file.createNewFile();
                FileOutputStream ostream = new FileOutputStream(file);
                bitmap.compress(CompressFormat.JPEG, 100, ostream);
                ostream.close();
            } 
            catch (Exception e) 
            {
                e.printStackTrace();
            }


        Intent shareIntent = new Intent(Intent.ACTION_SEND);
        Uri phototUri = Uri.parse("/DCIM/Camera/image.jpg");
        shareIntent.setData(phototUri);
        shareIntent.setType("image/*");
        shareIntent.putExtra(Intent.EXTRA_STREAM, phototUri);
        startActivity(Intent.createChooser(shareIntent, "Share Via"));

}  

}

2 个答案:

答案 0 :(得分:1)

试试这个

Intent shareIntent = new Intent(Intent.ACTION_SEND);
Uri phototUri = Uri.parse(path);
shareIntent.setData(photootUri);
shareIntent.setType("image/png");
shareIntent.putExtra(Intent.EXTRA_STREAM, photootUri);
getContext().startActivity(Intent.createChooser(shareIntent, "Use this for sharing"));

答案 1 :(得分:1)

请参阅以下链接。这对你很有帮助。我认为它满足了你的要求。

http://www.technotalkative.com/android-pick-image-from-native-gallery/