I'm a beginner to android. I need to know is there any intent to open the Create Message window. I tried with this code -
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
But, it raises, Gmail, Email & Message
I need to raise only message. In my application i've to integrate this when i press the button. Can anybody know this? Guide me.
You can just in your xml file add
and in activity:
Try this:
I guess this should work:
Use just like this for all applications will accept this intent
This will help you: