当前位置: 代码迷 >> Android >> 安卓 拨号界面跟直接拨打界面
  详细解决方案

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

热度:97   发布时间:2016-05-01 13:39:36.0
安卓 拨号界面和直接拨打界面

/**	 *打电话	 * 	 * @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);	}
?
  相关解决方案