调用内置应用程序

来源:互联网 发布:违反网络安全法27条 编辑:程序博客网 时间:2024/06/15 19:26
//拨打电话Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:" + "12345678"));startActivity(intent);//调用拨号界面Intent intent = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:" + "12345678"));startActivity(intent);//打开浏览器Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("http://www.da0ke.cn"));startActivity(intent);
0 0