Today I am going to explain how to do call using android.
For call using your android application you need to give the permission like following in your Manifest file.
Permission: <uses-permission android:name="android.permission.CALL_PHONE" />
Sample Code:
String url = "tel:07969999999";
startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(url)));
Download Full Source Code: DirectCall
Enjoy Coding...!!!
For call using your android application you need to give the permission like following in your Manifest file.
Permission: <uses-permission android:name="android.permission.CALL_PHONE" />
Sample Code:
String url = "tel:07969999999";
startActivity(new Intent(Intent.ACTION_CALL, Uri.parse(url)));
Download Full Source Code: DirectCall
Enjoy Coding...!!!
No comments:
Post a Comment