如何将位图发送到WhatsApp应用程序 [英] How can I send bitmap to WhatsApp Application

查看:0
本文介绍了如何将位图发送到WhatsApp应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的问题是如何将位图发送到WhastApp应用程序,并使用以下代码;

ImageView iv=(ImageView)view.findViewById(R.id.item_image);
Bitmap bitmap = ((BitmapDrawable)iv.getDrawable()).getBitmap();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] byteArray = stream.toByteArray();

PackageInfo info=pm.getPackageInfo("com.whatsapp", PackageManager.GET_META_DATA);
//Check if package exists or not. If not then code
//in catch block will be called
waIntent.setPackage("com.whatsapp");
waIntent.setType("image/png");
waIntent.putExtra(Intent.ACTION_SEND, byteArray);
startActivity(Intent.createChooser(waIntent, "Share with"));

但该代码不起作用。我的错误在哪里?谢谢。

推荐答案

这对我有效:

public void onClickApp(String pack, Bitmap bitmap) {
    PackageManager pm = context.getPackageManager();
    try {
        ByteArrayOutputStream bytes = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        String path = MediaStore.Images.Media.insertImage(context.getContentResolver(), bitmap, "Title", null);
        Uri imageUri = Uri.parse(path);

        @SuppressWarnings("unused")
        PackageInfo info = pm.getPackageInfo(pack, PackageManager.GET_META_DATA);

        Intent waIntent = new Intent(Intent.ACTION_SEND);
        waIntent.setType("image/*");
        waIntent.setPackage(pack);
        waIntent.putExtra(android.content.Intent.EXTRA_STREAM, imageUri);
        waIntent.putExtra(Intent.EXTRA_TEXT, pack);
        context.startActivity(Intent.createChooser(waIntent, "Share with"));
    } catch (Exception e) {
        Log.e("Error on sharing", e + " ");
        Toast.makeText(context, "App not Installed", Toast.LENGTH_SHORT).show();
    }
}

这篇关于如何将位图发送到WhatsApp应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆