As previous cl ag/25185014 we increased the preview block horizontal padding when landscape mode. However, in setup wizard it uses GlifPreferenceLayout so the settings page only has half screen width when landscape mode, so the preview block ui is squished due to limited width. Also, setup wizard package has overlay the paddings to larger than our prevoius adjust. Therefore, we rollback the changes in accessibility_text_reading_preview.xml to get the default padding, then add checker to increase the paddings if needed at runtime. Bug: 309590083 Test: manually Test: atest TextReadingPreviewPreferenceTest Test: atest TextReadingPreferenceFragmentForSetupWizardTest Change-Id: Ib907f4182eed272b84a4ab6208ea2d8a89ba96c4
57 lines
2.3 KiB
XML
57 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2022 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingVertical="@dimen/settingslib_illustration_padding"
|
|
android:paddingEnd="?android:attr/listPreferredItemPaddingEnd"
|
|
android:paddingStart="?android:attr/listPreferredItemPaddingStart">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/preview_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/accessibility_text_reading_preview"
|
|
android:clipChildren="true"
|
|
android:orientation="vertical"
|
|
android:padding="18dp">
|
|
|
|
<TextView
|
|
android:id="@+id/preview_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/screen_zoom_preview_title"
|
|
style="@style/AccessibilityTextReadingPreviewTitle" />
|
|
|
|
<com.android.settings.accessibility.TextReadingPreviewPager
|
|
android:id="@+id/preview_pager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="217dp"
|
|
android:contentDescription="@string/preview_pager_content_description" />
|
|
|
|
<com.android.settings.widget.DotsPageIndicator
|
|
android:id="@+id/page_indicator"
|
|
style="@style/PreviewPagerPageIndicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:padding="6dp"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|