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

android-通电话

2012-09-20 
android-打电话直接贴代码。// 生成呼叫意图????Intent intent new Intent(Intent.ACTION_CALL, Uri.pars

android-打电话

直接贴代码。

// 生成呼叫意图
????Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
??????+ mobile));
????// 开始呼叫
????startActivity(intent);

热点排行