AlertDialog.Builder builder = new AlertDialog.Builder(
MainActivity.this);
builder.setMessage("是否拨打客服电话?").setPositiveButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
}).setNegativeButton("确认", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
String phone_number = "10086";
Intent intent2 = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"
+ phone_number));
MainActivity.this.startActivity(intent2);
}
}).show();
要在manifest清单文件中添加权限 <uses-permission android:name="android.permission.CALL_PHONE"/>