Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Making calls without ACTION_CALL activity

Is there a way to make a call from my application, but keep my activity in focus? ACTION_CALL shows the call screen, but I want to show my screen instead, with my own control to end the call. Is this possible? e.g. is there a service that does the actual phone call?

I basically want to allow the user to call another user, while still interacting with my app.

like image 968
Shezan Baig Avatar asked Nov 14 '22 17:11

Shezan Baig


1 Answers

You can not change or customize the call screen unless you are building your own ROM

That is not possible from an SDK application...

You can try to design your application so that it works with a backgroud service so that you achieve your goals

like image 80
jordenysp Avatar answered Dec 28 '22 10:12

jordenysp