Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

UI gets corrupted for large Font Sizes (EXPOSUREAPP-11531) #5844

Merged
merged 4 commits into from Feb 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -4,7 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/header_body"
android:layout_width="match_parent"
android:layout_height="64dp">
android:layout_height="wrap_content">

<TextView
android:id="@+id/date"
Expand Down
Expand Up @@ -32,6 +32,8 @@
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_160"
android:paddingTop="@dimen/padding_24"
android:maxLines="2"
android:ellipsize="end"
android:text="@string/qr_code_scan_body_title"
android:textAlignment="center"
app:layout_constraintEnd_toEndOf="@id/scanner_preview"
Expand All @@ -44,6 +46,8 @@
android:layout_width="@dimen/width_250"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_16"
android:maxLines="3"
android:ellipsize="end"
android:text="@string/qr_code_scan_body_subtitle"
android:textAlignment="center"
app:layout_constraintEnd_toEndOf="@id/scanner_preview"
Expand Down
Expand Up @@ -68,6 +68,8 @@
android:layout_marginEnd="@dimen/margin_8"
android:text="@string/pandemic_radar_card_message"
android:textSize="@dimen/font_14"
android:maxLines="4"
android:ellipsize="end"
app:layout_constraintEnd_toStartOf="@id/background_image"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="@id/subtitle"
Expand Down