I'm creating an application in which I'm trying to override the default android dial to include one more button "URGENT". The idea is that if the application is installed on 2 phones, and one phone mark the call as "URGENT", the other phone's receiver screen (which will also be overridden) will turn "RED" to show the receiver that the call is "URGENT".
I'm using below code to call but not sure how to include "URGENT" parameter along with it.
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:03000000000"));
startActivity(intent);
Please suggest if there is any way to achieve this functionality. Thanks!