Hi

   Can anybody please help me for the application "make a call to a phone
number"

I got some idea from the document.But i cant understand clearly


I got information from the below URL
http://blogoscoped.com/archive/2007-11-19-n27.html

This is the topic

*Let's make a call*

Now we know when we're close to our friends, what are we likely to want to
do when we're close? Drop in! But we're polite so we'll call them first.
Let's change our list item click function to call the friend we've clicked.
We can do this by firing a DIAL_ACTION intent.

   Intent i = new Intent();
   i.setAction(DIAL_ACTION);
   i.setData(new ContentURI(numbers.get(position)));
   startActivity(i);

The phone dialer has registered an IntentReceiver filtered on DIAL_ACTION so
it will react to this.
  Thanks
  judy

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to