My app makes multiple calls programatically but to do that it needs to override / hide/ close the call log that is displayed at the end of one call. Is this possible? Can it be made to work using PhoneStateListener() type of functionalities ?
Asked
Active
Viewed 277 times
1 Answers
2
make a phone call in android and come back to Base activity when the call is ended
using PhoneCallListener
see my answer is here
-
so i just add a PhoneCallListner to my app.. I was right with my estimate of PhoneStateListener ? – Aseem Dua Jun 05 '12 at 11:22
-
yes!! and load activty in "onCallStateChanged" method with a Flag "FLAG_ACTIVITY_CLEAR_TOP".. it works fine with me – swiftBoy Jun 05 '12 at 11:24
-
Can i resume from the very point after the call command rather than re-starting the app? – Aseem Dua Jul 05 '12 at 11:11