How to open Gmail Compose when a button is clicked in Android App?

后端 未结 11 1026
别跟我提以往
别跟我提以往 2020-12-01 06:25

I am trying to open up Gmail Compose screen when a button is clicked in my Android App. Do I need some API key for this from Google? or what do I need to do in my button onC

11条回答
  •  情书的邮戳
    2020-12-01 06:57

    I don't know that you can specifically launch gmail. Have you tried this in your onClickListener

    Intent emailIntent = new Intent(Intent.ACTION_SEND);
    emailIntent.setType("text/plain");
    startActivity(emailIntent);  
    

    You can find more details here: Email android intent

提交回复
热议问题