hi guys i am making an app in which when user click on button it will redirect them to phone app of android with *700# entered. but the problem is when i write # in string it doesn't appear in phone app of android.
here is the code:
public void activite (View view) {
String number = "*700#";
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse("tel:" +number));
startActivity(intent);
}
it works fine except that number sign doesn't come up please help.