android - Non change able Intent.EXTRA_SUBJECT in email Intent -


in app have contact via mail function. however, have specific title don't want user able customize / change.

how can achieved?

currrent code:

intent intent = new intent(android.content.intent.action_send);  string title = "my subject"; intent.putextra(android.content.intent.extra_subject, title); // other stuff... 

as above, user can change title , don't want this. want "my subject" in case.

thanks answer!

this not possible. if you're handing off mailing functionality e-mail app, app allow user change subject. if critical, you'll have send e-mail inside app rather hand off through intent.


Comments

Popular posts from this blog

apache - Add omitted ? to URLs -

redirect - bbPress Forum - rewrite to wwww.mysite prohibits login -

php - How can I stop spam on my custom forum/blog? -