读书人

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

发布时间: 2012-09-25 09:55:58 作者: rapoo

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

/** *打电话 *  * @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);}
?

读书人网 >Android

热点推荐