Loading packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java +6 −2 Original line number Diff line number Diff line Loading @@ -252,8 +252,12 @@ public class QSAnimator implements Callback, PageListener, Listener, OnLayoutCha private void getRelativePositionInt(int[] loc1, View view, View parent) { if(view == parent || view == null) return; loc1[0] += view.getX(); // Ignore tile pages as they can have some offset we don't want to take into account in // RTL. if (!(view instanceof PagedTileLayout.TilePage)) { loc1[0] += view.getLeft(); loc1[1] += view.getTop(); } getRelativePositionInt(loc1, (View) view.getParent(), parent); } Loading Loading
packages/SystemUI/src/com/android/systemui/qs/QSAnimator.java +6 −2 Original line number Diff line number Diff line Loading @@ -252,8 +252,12 @@ public class QSAnimator implements Callback, PageListener, Listener, OnLayoutCha private void getRelativePositionInt(int[] loc1, View view, View parent) { if(view == parent || view == null) return; loc1[0] += view.getX(); // Ignore tile pages as they can have some offset we don't want to take into account in // RTL. if (!(view instanceof PagedTileLayout.TilePage)) { loc1[0] += view.getLeft(); loc1[1] += view.getTop(); } getRelativePositionInt(loc1, (View) view.getParent(), parent); } Loading