How to make an email address clickable?

前端 未结 5 800
-上瘾入骨i
-上瘾入骨i 2020-12-15 03:10

I have some text in my application that says in case you need extra help, please email us and here is the email address, blah, blah.

But I want them to be able to cl

5条回答
  •  情深已故
    2020-12-15 03:33

    You need to fire an intent in your onClickListener:

    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain"); // send email as plain text
    intent.putExtra(Intent.EXTRA_EMAIL, new String[] { "some@email.address" });
    intent.putExtra(Intent.EXTRA_SUBJECT, "subject");
    intent.putExtra(Intent.EXTRA_TEXT, "mail body");
    startActivity(Intent.createChooser(intent, ""));
    

提交回复
热议问题