I'm trying to make an android project that will dial a fixed number. It is working when I'm using normal number like 01712364445 or something like that. But when I'm using this number *566# it is dialing to *567 that is # is missing.how to solve this ? My code is here...
gp = (Button) findViewById(R.id.buttongp);
gp.setOnClickListener(listener);
}
OnClickListener listener = new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent dialerIntent = new Intent();
dialerIntent.setAction(Intent.ACTION_CALL);
dialerIntent.setData(Uri.parse("tel:*566# "));
startActivity(dialerIntent);
}
};