Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open number dialer pad programmatically in android?

Tags:

I want to display Number Dial Keypad (Phone Call) Programmatically on button click in android. Code is available for direct number dialing but I only need to show the dial keypad when I click the Button.

like image 301
Addon_Android Avatar asked Nov 09 '12 13:11

Addon_Android


People also ask

How do I access my Dialer?

In your App Drawer (application list) by default, you should find the Voice Dialer included with nearly all Android versions. Tap Voice Dialer to open it. Note you can always add this “app” to your home screen for easy and quick access.


1 Answers

Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(Uri.parse("tel:9999999999")); startActivity(intent);  

For this we don't need to add any permission in AndroidManifest.xml

like image 83
Kishore Kumar Avatar answered Nov 16 '22 16:11

Kishore Kumar