It's possible to call a number from an android application , without using native action call Intent. Without using this :
Intent phoneIntent = new Intent(Intent.ACTION_CALL);
phoneIntent.setData(Uri.parse("tel:91-800-001-0101"));
startActivity(phoneIntent);
0 comments:
Post a Comment