How can I make this intent not only goto the telephont dialer with number, but I don’t want to hit the CALL button, I just want it to starting dialing when the intent is started.
Intent dialIntent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:999-999-9999"));
startActivity(dialIntent);
Please advise?
FlinxSYS
Use
Intent.ACTION_CALLin your intent.EDIT:
Dont forgot to add
android.permission.CALL_PHONEin manifest.