diff options
| author | 2025-01-07 19:43:02 -0800 | |
|---|---|---|
| committer | 2025-01-07 19:43:02 -0800 | |
| commit | 29b18fb4b0abe7e5bd2b2db20dcdedb76656c0b0 (patch) | |
| tree | 378d03dc37207daac44fa123897d4101540316ed | |
| parent | afde495cd12a593286f394651b9c7b0394953051 (diff) | |
| parent | 9cdda2d53841903042d55fe989aa71e8ef2ecf2f (diff) | |
Merge "[A11y] Fix device list has has a fixed height and contains a TextView with scalable text." into main
| -rw-r--r-- | packages/CompanionDeviceManager/res/layout/activity_confirmation.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/CompanionDeviceManager/res/layout/activity_confirmation.xml b/packages/CompanionDeviceManager/res/layout/activity_confirmation.xml index afece5fac0fb..40a786ed560b 100644 --- a/packages/CompanionDeviceManager/res/layout/activity_confirmation.xml +++ b/packages/CompanionDeviceManager/res/layout/activity_confirmation.xml @@ -81,7 +81,9 @@ <androidx.recyclerview.widget.RecyclerView android:id="@+id/device_list" android:layout_width="match_parent" - android:layout_height="200dp" + android:layout_height="wrap_content" + app:layout_constraintHeight_max="220dp" + app:layout_constraintHeight_min="200dp" android:scrollbars="vertical" android:visibility="gone" /> |