ACTION_SEND force sending with email

前端 未结 9 1900
予麋鹿
予麋鹿 2021-02-15 11:37

every time i create an action for sending an email from my app, it prompts to many options including a QR client...

Is there a way to force sending via email clients onl

9条回答
  •  后悔当初
    2021-02-15 12:35

    Intent.setType("plain/text");
    

    At first when I spotted this I immediately though it was a mistake and it was meant to be text/plain, but this is actually the correct way to only display E-mail clients in the application list.

    Give it a try and see for yourself.

提交回复
热议问题