intent跳转邮箱(邮箱跳转链接)
请问,如何实现这个功能:点击网页上的一个链接,跳转到邮箱的发信界面,收件人自动填写为我提前设置……
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);
120
3
2022-09-27
渗透业务