Don't constraint view sizes as much

We're ellipsing text views unnecessarily, because of smaller fields
that only contain icons.

Test: visual
Fixes: 148448106
Change-Id: Ifba8096b44ca8a0db466bececd41caa0d71e67dd
This commit is contained in:
Lucas Dupin
2020-05-01 14:03:01 -07:00
parent 144788b5bb
commit 899c6c6212

View File

@@ -510,7 +510,7 @@ public class KeyguardSliceView extends LinearLayout implements View.OnClickListe
for (int i = 0; i < childCount; i++) {
View child = getChildAt(i);
if (child instanceof KeyguardSliceTextView) {
((KeyguardSliceTextView) child).setMaxWidth(width / childCount);
((KeyguardSliceTextView) child).setMaxWidth(width / 3);
}
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);