Notification on lockscreen settings: adapt text view for large font

Notification on lockscreen settings: adapt text view for large font and
long text languages.

Bug: 367455695
Flag: com.android.server.notification.notification_lock_screen_settings
Test: manual
Change-Id: I1dffab01433eff5e6af86c46b5d20340df6912db
This commit is contained in:
Yining Liu
2024-12-27 23:00:07 +00:00
parent 38537f8129
commit fb200f0d7b

View File

@@ -54,12 +54,11 @@
</FrameLayout>
<TextView
android:layout_width="match_parent"
android:layout_width="@dimen/contrast_button_total_size"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/contrast_button_text_spacing"
android:gravity="center_horizontal|top"
android:ellipsize="end"
android:singleLine="true"
android:singleLine="false"
android:textSize="@dimen/contrast_button_text_size"
android:text="@string/lock_screen_notifs_show_compact"
android:textColor="@androidprv:color/materialColorOnSurface"/>
@@ -89,12 +88,11 @@
</FrameLayout>
<TextView
android:layout_width="match_parent"
android:layout_width="@dimen/contrast_button_total_size"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/contrast_button_text_spacing"
android:gravity="center_horizontal|top"
android:ellipsize="end"
android:singleLine="true"
android:singleLine="false"
android:textSize="@dimen/contrast_button_text_size"
android:text="@string/lock_screen_notifs_show_full_list"
android:textColor="@androidprv:color/materialColorOnSurface"/>