I am using the following code to send an email from my app.The cursor points to the beginning of the “Please look into this issue”. Is there any way to position the pointer at the end of the Text content? Thanks in advance.
intent.putExtra(Intent.EXTRA_EMAIL, new String[]{"abc@gmail.com"});
intent.putExtra(Intent.EXTRA_SUBJECT, "Hi");
intent.putExtra(Intent.EXTRA_TEXT, "Please look into this issue:");
startActivity(intent);
@kusi Don’t use cursor here, its shows totally different meaning in Android. Regarding your problem, No its a default functionality, you have to create your custom email composer if you want to do so.