Add getAssociatedDisplayId to ContextWrapper

Bug: 262914829
Test: manual test in MD emulator by logging the associated display id
Change-Id: I7f758c0b77c7bc76cf822d8d336ce49a728e1bbf
This commit is contained in:
Xiang Wang
2023-02-15 17:06:27 -08:00
parent 84bf2e3a0f
commit edd889e6b2

View File

@@ -1205,6 +1205,14 @@ public class ContextWrapper extends Context {
return mBase.getDisplayId();
}
/**
* @hide
*/
@Override
public int getAssociatedDisplayId() {
return mBase.getAssociatedDisplayId();
}
/**
* @hide
*/