I want to send an image to WhatsApp with text but when I click to send the app gets crashed...
Here is my code...
public void onClick(View view) {
                BitmapDrawable bitmapDrawable = ((BitmapDrawable) whatsapp.getDrawable());
                Bitmap bitmap = bitmapDrawable.getBitmap();
                String bitpath = MediaStore.Images.Media.insertImage(getContentResolver(), bitmap, "WhatsApp", null);
                Uri uri = Uri.parse(bitpath);
                Intent shareIntent = new Intent(Intent.ACTION_SEND);
                shareIntent.setType("text/plain");
                shareIntent.setType("image/png");
                shareIntent.putExtra(Intent.EXTRA_STREAM, uri);
                shareIntent.putExtra(Intent.EXTRA_TEXT, "Hey..");
                chooser = Intent.createChooser(shareIntent, "Send Image..");
                startActivity(chooser);
            }
 
     
     
    