Android app accessing the android dialer -



Android app accessing the android dialer -

is possible access dialer of android (mobile phone) android app. if user enters 001 in app next telephone number, app should create dialer of android(mobile phone) dial number after 001...?

you can send intent open de phone dialer supplied phonenumber.

http://developer.android.com/reference/android/content/intent.html#action_dial

string url = "tel:1234"; intent intent = new intent(intent.action_call, uri.parse(url));

don't forget add together permission manifest

<uses-permission android:name="android.permission.call_phone"></uses-permission>

android

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - cuda, pycuda -- how to write complex numbers -- errors:class "cuComplex" has no member "i" -

How do I check if an insert was successful with MySQLdb in Python? -