I want to send e-mail from my Android app, by starting an ACTION_SEND intent, as described here.
If I don't supply a subject (intent.putExtra(Intent.EXTRA_SUBJECT, "...")
), the focus in the e-mail activity will be on the Subject field, which is what I want. But if I do supply a subject, the focus will go directly to the Body, which I don't want.
Is there a way to force the focus to be on the Subject field? Or is this completely out of my control?