Before, i used intents for same activity. I have sent some text to other class via implementing serializable both of class which is sending texts and other class which is taken texts.
I used them:
Text Sending Class Has::
intent.putExtra("text",text);
startActivity(intent);
Text Receiving Class Has:
getIntent().getSerializableExtra("text").toString();
In my question for my new application, i have a listactivity which is stored some text. I want to send choosen text from list to send mms.apk's textfield. Is it possible to do that?
Then user choose person from telephone directory and send message.
Many Thanks.