Fix edit/page indicator area layout

Bug: 27201532
Change-Id: Ie03e6aeeb9d607f1fba370a4f1bd23a2ffb9b485
This commit is contained in:
Jason Monk
2016-02-21 10:57:10 -05:00
parent 9a08f827a4
commit 855d408e17
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
<FrameLayout
android:id="@+id/page_decor"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_height="48dp"
android:layout_gravity="bottom">
<com.android.systemui.qs.PageIndicator

View File

@@ -81,7 +81,7 @@ public class TileLayout extends ViewGroup implements QSTileLayout {
record.tileView.measure(exactly(mCellWidth), exactly(mCellHeight));
previousView = record.tileView.updateAccessibilityOrder(previousView);
}
setMeasuredDimension(width, (mCellHeight + mCellMargin) * rows + mCellMargin);
setMeasuredDimension(width, (mCellHeight + mCellMargin) * rows);
}
private static int exactly(int size) {