mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-03 15:26:27 +00:00
Fix FC when rotating incall view
This commit is contained in:
parent
9a9cd5a54e
commit
4f472b10a5
1 changed files with 6 additions and 1 deletions
|
|
@ -665,7 +665,12 @@ public class IncallActivity extends AbstractCalleesActivity implements
|
|||
@Override
|
||||
public void onConfigurationChanged(Configuration newConfig)
|
||||
{
|
||||
// DO nothing to not recreate the activity on smartphone is screen is rotated
|
||||
if (!isXLargeScreen())
|
||||
{
|
||||
// Do nothing to not recreate the activity on smartphone is screen is rotated
|
||||
return;
|
||||
}
|
||||
super.onConfigurationChanged(newConfig);
|
||||
}
|
||||
|
||||
private void updateConfItem() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue