Fix volume causing video activity to finish
This commit is contained in:
parent
87d7af6c5a
commit
107c6c8ac2
1 changed files with 1 additions and 1 deletions
|
@ -382,7 +382,7 @@ public class VideoCallActivity extends Activity implements
|
||||||
return true;
|
return true;
|
||||||
if (Version.isXLargeScreen(this) && LinphoneUtils.onKeyBackGoHome(this, keyCode, event)) {
|
if (Version.isXLargeScreen(this) && LinphoneUtils.onKeyBackGoHome(this, keyCode, event)) {
|
||||||
return true;
|
return true;
|
||||||
} else if (!Version.isXLargeScreen(this)) {
|
} else if (!Version.isXLargeScreen(this) && keyCode == KeyEvent.KEYCODE_BACK) {
|
||||||
LinphoneActivity.instance().startIncallActivity();
|
LinphoneActivity.instance().startIncallActivity();
|
||||||
finish();
|
finish();
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue