I'm trying to call with a long number that looks something like this.
tel: 883994555 ,, 32343 # ,, #
with code that looks like this.
Intent intent = new Intent(Intent.ACTION_CALL);
Uri uri = Uri.parse(number);
intent.setData(uri);
startActivity(intent);
I see that the phone does not dial after the first '#' sigh. Anyone knows how to make this work.
Thank.
source
share