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

android调用系统通电话功能

2012-07-03 
android调用系统打电话功能android调用系统打电话功能?Intent intent new Intent(Intent.ACTION_CALL)i

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>
?

?

热点排行