请问,如何实现这个功能:点击网页上的一个链接,跳转到邮箱的发信界面,收件人自动填写为我提前设置……

请问,如何实现这个功能:点击网页上的一个链接,跳转到邮箱的发信界面,收件人自动填写为我提前设置收件人地址。

谢谢!

1、跳转到拨号界面,代码如下: 1)直接拨打Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));startActivity(intentPhone); 2)跳转到拨号界面Intent intent = newIntent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);startActivity(intent);2、跳转到联系人页面,使用一下代码:Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));startActivity(intentPhone);
温馨提示:答案为网友推荐,仅供参考
相似回答