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
Post a Comment