Quantcast
Viewing all articles
Browse latest Browse all 110

Android SDK - Start a phone call from Android application

try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:+123456")); startActivity(intent); } catch (Exception e) { Log.e("SampleApp", "Failed to invoke ...

Viewing all articles
Browse latest Browse all 110

Trending Articles