Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f6e32f07 authored by Robert Snoeberger's avatar Robert Snoeberger
Browse files

Pad indication text to prevent clipping on side of screen.

Padding amount is the same as owner_info also shown on AOD screen.

Bug: 137627803
Test: Checked that text with more than 100 characters shown in
indication area wasn't clipped on side of screen. 100 characters was
used because face_acquired_sensor_dirty string has char limit of 100.
Change-Id: I1c4014b4cfbdc2bba84b9974813ca23e6b42cf4c
parent 32cc7065
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -46,6 +46,8 @@
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:paddingStart="@dimen/keyguard_indication_text_padding"
                android:paddingEnd="@dimen/keyguard_indication_text_padding"
                android:textAppearance="@style/TextAppearance.Keyguard.BottomArea"
                android:visibility="gone" />

@@ -54,6 +56,8 @@
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:paddingStart="@dimen/keyguard_indication_text_padding"
                android:paddingEnd="@dimen/keyguard_indication_text_padding"
                android:textAppearance="@style/TextAppearance.Keyguard.BottomArea"
                android:accessibilityLiveRegion="polite" />

+3 −0
Original line number Diff line number Diff line
@@ -183,6 +183,9 @@
    <!-- The padding on the bottom of the notifications on the keyguard -->
    <dimen name="keyguard_indication_bottom_padding">12sp</dimen>

    <!-- The padding at start and end of indication text shown on AOD -->
    <dimen name="keyguard_indication_text_padding">16dp</dimen>

    <!-- Shadows under the clock, date and other keyguard text fields -->
    <dimen name="keyguard_shadow_radius">5</dimen>