当前位置: 代码迷 >> Android >> android调用系统通电话功能
  详细解决方案

android调用系统通电话功能

热度:76   发布时间:2016-05-01 18:46:25.0
android调用系统打电话功能

android调用系统打电话功能

?

				Intent intent = new Intent(Intent.ACTION_CALL);				intent.setData(Uri.parse("tel:13xxxxxx"));				startActivity(intent);
?

需要权限:

?

<uses-permission android:name="android.permission.CALL_PHONE"></uses-permission>
?

?

  相关解决方案