Push a potential fix for hotseat aggregation

This could be caused by landscape layout not receiving inset changes

Adding logs for hotseat layout info as well

Bug: 335141365
Flag: EXEMPT bugfix
Test: N/A
Change-Id: I987f8622907a10fac5375ddddac3db2c5eba41c1
This commit is contained in:
Sihua Ma
2024-06-03 18:35:39 +00:00
parent 38b9e1438e
commit a44f4ac861
4 changed files with 28 additions and 10 deletions

View File

@@ -58,6 +58,9 @@ public interface WorkspaceLayoutManager {
int screenId = presenterPos.screenId;
x = getHotseat().getCellXFromOrder(screenId);
y = getHotseat().getCellYFromOrder(screenId);
// TODO(b/335141365): Remove this log after the bug is fixed.
Log.d(TAG, "addInScreenFromBind: hotseat inflation with x = " + x
+ " and y = " + y);
}
addInScreen(child, info.container, presenterPos.screenId, x, y, info.spanX, info.spanY);
}