Merge "Logging requestLayout()" into ub-launcher3-qt-dev

This commit is contained in:
Vadim Tryshev
2019-04-24 01:24:18 +00:00
committed by Android (Google) Code Review

View File

@@ -211,4 +211,14 @@ public class LauncherRootView extends InsettableFrameLayout {
void onWindowVisibilityChanged(int visibility);
}
@Override
public void requestLayout() {
super.requestLayout();
if (com.android.launcher3.TestProtocol.sDebugTracing) {
android.util.Log.d(com.android.launcher3.TestProtocol.NO_DRAG_TAG,
"requestLayout @ " + android.util.Log.getStackTraceString(
new Throwable()));
}
}
}