Update keyboard quick switch view ordering and add icons

- Updated the keyboard quick switch view ordering to left-to-right (vice versa in RTL)
- Added app icons to keyboard quick switch taskviews

Flag: ENABLE_KEYBOARD_QUICK_SWITCH
Fixes: 275629107
Test: launched keyboard quick switch view and changed focus back and forth
Change-Id: Ie2f0a1c08c7065c53075f6fa015000a2d6184491
This commit is contained in:
Schneider Victor-tulias
2023-05-03 12:02:58 -07:00
parent 8f23be7b6f
commit b6407699ae
8 changed files with 97 additions and 30 deletions

View File

@@ -213,8 +213,8 @@ public class KeyboardQuickSwitchViewController {
mControllerCallbacks.updateThumbnailInBackground(task, callback);
}
void updateTitleInBackground(Task task, Consumer<Task> callback) {
mControllerCallbacks.updateTitleInBackground(task, callback);
void updateIconInBackground(Task task, Consumer<Task> callback) {
mControllerCallbacks.updateIconInBackground(task, callback);
}
}
}