On Tue, Jun 22, 2010 at 6:08 PM, Achanta <[email protected]> wrote: > hmm I did not get this part. >> You do not want to use new Intent(Intent.ACTION_DIAL, >> Uri.parse("tel://911")), since that will trigger the built-in Dialer >> application. Moreover, you do not want to implement an ACTION_DIAL >> Intent filter, since you are not a Dialer application. > > What I have in my app is an emergency number[911] button, which the > users can click. So when they click on it I want to show them the dial > menu with that number in it. > new Intent(Intent.ACTION_DIAL,Uri.parse("tel://911")) is doing that > for me. So I implemented it in this way.
Sorry, I messed up that part of my reply. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

