Answers for "how to send image on action pick intent to other application"

2

share intent android

Intent shareIntent = new Intent(Intent.ACTION_SEND);
            shareIntent.setType("text/plain");
            shareIntent.putExtra(Intent.EXTRA_SUBJECT, "My application name");
            String shareMessage = "\n" + tvBlogTitle.getText().toString()+ "\n\n";
            shareMessage = shareMessage + bundle.getString("link") + "\n\n";
            shareIntent.putExtra(Intent.EXTRA_TEXT, shareMessage);

            startActivity(Intent.createChooser(shareIntent, "choose one"));
Posted by: Guest on November-23-2020

Code answers related to "how to send image on action pick intent to other application"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language