How to make a phone call using intent in Android?

I’m using the following code to make a call in Android but it is giving me security exception please help. posted_by = “111-333-222-4”; String uri = “tel:” + posted_by.trim() ; Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse(uri)); startActivity(intent); permissions <uses-permission android:name=”android.permission.CALL_PHONE” /> Exception 11-25 14:47:01.661: ERROR/AndroidRuntime(302): Uncaught handler: thread main exiting due to uncaught exception 11-25 … Read more

How to trigger a phone call when clicking a link in a web page on mobile phone

I need to build a web page for mobile devices. There’s only one thing I still haven’t figured out: how can I trigger a phone call through the click of text? Is there a special URL I could enter like the mailto: tag for emails? Device specific solution are not preferred. I know iPhone automatically … Read more