Android Question Detect end of phone call

PhilipK

Member
Licensed User
Longtime User
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
Launching the PhoneStateChanged in a seperate service module, clean and effective! Thanks NJDude.
 
Upvote 0
Top