Handle configuration changes in floating rotation button

Update resources in floating rotation button
when configurations such as screen density, screen size,
current locale have changed.

Bug: 200103245
Test: change display size, locale, fold/unfold
 -> check that floating rotation button resources
    are updated
Change-Id: Ia69f4f8b393a686012e286a1e39822650c562d52
This commit is contained in:
Nick Chameyev
2021-11-26 11:38:28 +00:00
parent 0b7ed895e7
commit 71eed5ca35
4 changed files with 23 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ import android.app.ActivityOptions;
import android.content.ActivityNotFoundException;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo.Config;
import android.content.pm.LauncherApps;
import android.graphics.Insets;
import android.graphics.PixelFormat;
@@ -207,6 +208,10 @@ public class TaskbarActivityContext extends ContextThemeWrapper implements Activ
Log.d(TASKBAR_WINDOW_CRASH, "Adding taskbar window");
}
public void onConfigurationChanged(@Config int configChanges) {
mControllers.onConfigurationChanged(configChanges);
}
public boolean isThreeButtonNav() {
return mNavMode == Mode.THREE_BUTTONS;
}