美文网首页
Android拨打电话

Android拨打电话

作者: Endeav0r | 来源:发表于2017-11-16 15:42 被阅读17次

    1、直接拨打电话

    Intent intentPhone = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + phoneNumber));  
    startActivity(intentPhone);
    <uses-permission android:name="android.permission.CALL_PHONE" /> 需权限
    

    2、跳转到拨号面板

    Intent intent = newIntent(Intent.ACTION_DIAL,Uri.parse("tel:" + phoneNumber));  
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  
    startActivity(intent);  

    相关文章

      网友评论

          本文标题: Android拨打电话

          本文链接:https://www.haomeiwen.com/subject/knglvxtx.html