首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

安卓 拨号界面跟直接拨打界面

2012-09-25 
安卓 拨号界面和直接拨打界面/** *打电话 ** @param tel *电话号码 */protected void call(String tel) {/

安卓 拨号界面和直接拨打界面

/** *打电话 *  * @param tel *            电话号码 */protected void call(String tel) {// 只进入拨号界面,不拨打 Uri uri = Uri.parse("tel:" + string); Intent intent = new Intent(Intent.ACTION_DIAL, uri); startActivity(intent); //直接拨打Log.d(TAG, "call:" + tel);Uri uri = Uri.parse("tel:" + tel);Intent intent = new Intent(Intent.ACTION_CALL, uri);startActivity(intent);}
?

热点排行