mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-02-17 20:10:46 +01:00
end the call if the user closes the call screen while dialing
This commit is contained in:
parent
f3f62ff074
commit
33b5f6e1a3
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user