调用拨号界面拨打电话(不直接打出去)
Intent intent1= new Intent(Intent.ACTION_DIAL);
intent1.setData(Uri.parse("tel:400-8181800"));
startActivity(intent1);
Manifest文件里: 设置权限 <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> (报错的话,clean项目,)
************************************************************************************************************************
Android直接拨打电话*(直接打出去)
Intent intent1= new Intent(Intent.ACTION_CALL,Uri.parse("tel:400-8181800"));
intent1.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent1);
Manifest文件里: 设置权限 <uses-permission android:name="android.permission.CALL" />