Make sure QS tile layouts don\'t have overlapping rendering

am: c5bdafb776

* commit 'c5bdafb776ae8111da9da8f2b619181e136f1419':
  Make sure QS tile layouts don't have overlapping rendering
This commit is contained in:
Jason Monk
2016-02-25 21:37:36 +00:00
committed by android-build-merger
2 changed files with 10 additions and 0 deletions

View File

@@ -59,6 +59,11 @@ public class PagedTileLayout extends ViewPager implements QSTileLayout {
setCurrentItem(0);
}
@Override
public boolean hasOverlappingRendering() {
return false;
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();

View File

@@ -183,5 +183,10 @@ public class QuickQSPanel extends QSPanel {
// No resources here.
return false;
}
@Override
public boolean hasOverlappingRendering() {
return false;
}
}
}