android 拨打电话

调用拨打界面 或者 直接拨出电话

                              Intent intent = new Intent();//Intent.ACTION_CALL,Uri.parse(listphone.get(position))
                                intent.setAction(Intent.ACTION_CALL);//直接拨出电话
                                //intent.setAction(Intent.ACTION_DIAL);//只调用拨号界面,不拨出电话
                                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
                                intent.setData(Uri.parse("tel:" + phone));
                                startActivity(intent);


你可能感兴趣的:(android 拨打电话)