end the call if the user closes the call screen while dialing

This commit is contained in:
tibbi 2020-05-01 21:01:53 +02:00
parent f3f62ff074
commit 33b5f6e1a3
1 changed files with 11 additions and 0 deletions

View File

@ -70,6 +70,17 @@ class CallActivity : SimpleActivity() {
if (proximityWakeLock?.isHeld == true) {
proximityWakeLock!!.release()
}
if (CallManager.getState() == Call.STATE_DIALING) {
endCall()
}
}
override fun onBackPressed() {
super.onBackPressed()
if (CallManager.getState() == Call.STATE_DIALING) {
endCall()
}
}
private fun initButtons() {