diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java index 95e9c20235b0b..9d8c54501c026 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardSliceView.java @@ -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);