I need to make calls in my Android app that includes \"#\" or \"p\" in the dial.
If I use the next code:
Intent intent = new Intent(Intent.ACTION_CAL
I have solved this problem Here is the code solving it.
Intent shortcutIntent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:"+Uri.encode("*111*2#"))); startActivity(shortcutIntent);
Its working fine at my end. I hope its also helpful to you guys...