FAQs
Search
Recent Topics
Flagged Topics
Hot Topics
Best Topics
Register / Login
This week's book giveaway is in the
Security
forum.
We're giving away four copies of
Securing DevOps
and have Julien Vehent on-line!
See
this thread
for details.
Win a copy of
Securing DevOps
this week in the
Security
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Tim Cooke
Liutauras Vilda
Bear Bibeault
Devaka Cooray
Jeanne Boyarsky
Sheriffs:
Paul Clapham
Campbell Ritchie
Henry Wong
Saloon Keepers:
Tim Moores
Ron McLeod
salvin francis
Stephan van Hulst
Vijitha Kumara
Bartenders:
Tim Holloway
Carey Brown
Frits Walraven
Forum:
Android
to call a number[default tel app] or place a skype chat[skype app], can you tell me URLs for more he
Leonidas Savvides
Ranch Hand
Posts: 403
posted 7 years ago
public static void call(Activity activity) { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:555-555-5555")); activity.startActivity(intent); } public static void skype(Activity activity) { Intent intent = new Intent(Intent.SKYPE_CALL); intent.setData(Uri.parse("skype:lsedfr")); activity.startActivity(intent); }
to call a number[default tel app] or place a skype chat[skype app], can you tell me URLs for more help[sample code]?
Consider Paul's
rocket mass heater
.
Post Reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
how to switch from one activity to another activity
how to start application after pressing a particular number?
Not Registering -4
how call default Telephone App, or Skype App in Android and automatically initial a call
how to make calls from SIP server?
More...