摘要: 启动浏览器代码与范例:12Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")); startActivity(intent);说明:启动浏览器并前往http://www.google.com 。启动拨号程序代码与范例:12Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("tel:138"));startActivity(intent);说明:启动拨号程序并输入号码138。通话代码 阅读全文
posted @ 2012-10-17 11:47 ansionchen 阅读(674) 评论(0) 推荐(0)