当前位置: 代码迷 >> Android >> android-通电话
  详细解决方案

android-通电话

热度:75   发布时间:2016-05-01 14:32:35.0
android-打电话

直接贴代码。

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

  相关解决方案