I am working on an Android application wherein when the user click on the phone call button then, the application provide itself to make call through skype or viber?
I made the intent filter but how can I call through it? Is there any way to register my application in phone system that it provides call service ?
Intent in=new Intent(Intent.ACTION_DIAL, Uri.parse("tel:000"));
startActivity(in);
thank you for answer
Use
intent-filterinAndroidManifest.xmlof your ApplicationYou will put another
<intent-filter>tag in yourActivity(theActivitywhich will handle call functionality) Tag