PhilipK Member Licensed User Longtime User Oct 2, 2013 #1 Hi, I am starting a phone call in my app with: B4X: Dim i As Intent i.Initialize(i.ACTION_CALL, "tel:" & MobileNo) StartActivity(i) Is there an (easy!) way to listen for/detect the call end/hangup?
Hi, I am starting a phone call in my app with: B4X: Dim i As Intent i.Initialize(i.ACTION_CALL, "tel:" & MobileNo) StartActivity(i) Is there an (easy!) way to listen for/detect the call end/hangup?
PhilipK Member Licensed User Longtime User Oct 2, 2013 #3 Launching the PhoneStateChanged in a seperate service module, clean and effective! Thanks NJDude. Upvote 0