Send Email Intent

前端 未结 30 3320
忘掉有多难
忘掉有多难 2020-11-22 07:27
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType(\"text/html\");
intent.putExtra(Intent.EXTRA_EMAIL, \"emailaddress@emailaddress.com\");
intent.putExtr         


        
30条回答
  •  情话喂你
    2020-11-22 08:06

    Maybe you should try this: intent.setType("plain/text");

    I found it here. I've used it in my app and it shows only E-Mail and Gmail options.

提交回复
热议问题