I'm trying to redesign the look and feel of my phone and right now i'm redoing the phone app. From searching over stackoverflow and other QA sites I understand that to make a phone call I can use this code:
Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:000000000"));
startActivity(callIntent);
But this code only asks the system to perform the call, so immediately after startActivity, the phone stock ui comes up and performs the call.
Also I read some people saying that you cannot bypass the dial screen, that this is a security measure implemented by Google. So I was just wondering if indeed it is impossible to make a fully fledged phone dialler or if there is a way, thanks!