Android's share intents system is great in theory, but the execution can sometimes be frustrating. to be filtered out for sharing images + text. In android we can use the default share intent to share our image,text to an app installed in our device, but many times we only need specific application like Whatsapp, Facebook, Twitter, Gmail, etc. Question or issue in Android App Development: I’m trying to share some text using an intent: Intent i = new Intent(android.content.Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(android.content.Intent.EXTRA_TEXT, "TEXT"); and warping with chooser: startActivity(Intent.createChooser(sms, getResources().getString(R.string.share_using))); it works! Share text using intent. Example. this article Android Intent Filters Example. This category is set by the activity’s startActivity() method. Following is the complete example of using Intent Filters in android applications. For example, you should use text/plain when sharing plain text. So, Let’s started. The ACTION_SEND helps to open the share intent where you will share your required data. This section covers some common ways you can send and receive simple data (like text, images and files) between applications using the Android Sharesheet and Intent Resolver with Intent objects. We know that sometimes the applications created by us need to share images and text together. Android provide us an Intent by which we can use to share image, video, audio, to share app link in android programmatically using android studio. So today we will learn in this blog how to share text and images together on other apps like WhatsApp, Facebook, Twitter, etc. but … But it seems like every time you use this function, the list of apps is in a different order — especially when it comes to the Direct Share targets at the top. Android share intent to share text and image. For more information read here. So, In this section, we’ll share a simple text using intent… Here are a few common MIME types when sending simple data in Android. That way, if another app creates a Send Intent that attempts to share an image, our app won’t advertise itself since our simple text view setup would not know how to handle an image. GitHub Gist: instantly share code, notes, and snippets. text/plain, text/rtf, text/html, text/json, receivers should register for text/* image/jpg, image/png, image/gif, receivers should register for image/* video/mp4, video/3gp, receivers should register for video/* Now we’ll learn how we share text and image using android Intent with the help of share intent. When you tap the "Share" button next to a link, app, or file, you see a list of apps you can share that item with. Share image and text on facebook using intent in android Download Source code here Manifest.xml: Add the following permission in you mainfest.xml: