---
title: "How do we  share text using android share Intent ?"  
description: "How do we  share text using android share Intent ?"  
author: "Anonymous User"  
published: 2015-09-11  
updated: 2020-09-17  
canonical: https://www.mindstick.com/interview/22821/how-do-we-share-text-using-android-share-intent  
category: "android"  
tags: ["android", "android intent"]  
reading_time: 1 minute  

---

# How do we  share text using android share Intent ?

Share intent is an easy and convenient way of sharing content of your application with other apps.\

```
Intent sendIntent = new Intent();sendIntent.setAction(Intent.ACTION_SEND);sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");sendIntent.setType("text/plain");startActivity(sendIntent);
```

## Answers

### Answer by Anonymous User

Share intent is an easy and convenient way of sharing content of your application with other apps.\

```
Intent sendIntent = new Intent();sendIntent.setAction(Intent.ACTION_SEND);sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");sendIntent.setType("text/plain");startActivity(sendIntent);
```


---

Original Source: https://www.mindstick.com/interview/22821/how-do-we-share-text-using-android-share-intent

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
