I'm using this code for calling, in Android application:
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + call.Number));
startActivity(callIntent);
but I obtain a dialog like this:
Why no call is make?
P.s: I'm using a Tablet (Acer Iconia A501), not a smartphone.