如何将位图发送到WhatsApp应用程序位图、发送到、如何将、应用程序

2023-09-03 14:11:35 作者:回不去、是前世的爱

我的问题是如何将位图发送到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"));

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

推荐答案

WhatsApp应用程序在巴西创历史新高

这对我有效:

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();
    }
}