I need to make automatic phone call app with this two character (comma and hash).
I try with this method. If so, all character behind hash is not called.
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:" +"131#3131,,,44"));
startActivity(intent);
So, I try with this method again. Then, all number behind comma is not called. May I know how to do?
Intent out = new Intent();
out.setAction(Intent.ACTION_DIAL);
out.setData(Uri.parse("tel:" + Uri.encode("+3943#333,,23")));
startActivity(out);