I want to create in my application dialer that can dial to numbers. I tried to do something structured, but it opens up a new activity, and I need it in the tag.
This is an example I found, but not good for me:
Intent intent = new Intent (Intent.ACTION_CALL);
startActivity (intent);
What else can I do to make my Own dialer or even use something exists but not opened by the new activity.
Thank you in advance for your help!