Make sure QS tile layouts don't have overlapping rendering

Bug: 27361901
Change-Id: I177bbf8c0d13b0e9595d9b95c87eb01df1bc7d05
This commit is contained in:
Jason Monk
2016-02-25 16:24:21 -05:00
parent 236fcafab5
commit c5bdafb776
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;
}
}
}