diff options
| author | 2024-10-09 16:55:25 -0400 | |
|---|---|---|
| committer | 2024-10-09 16:57:21 -0400 | |
| commit | f8df1507716b0b82b892c214c41fcbe034c11115 (patch) | |
| tree | 6eb8370d785940aa97d6d89f1975e959cc090df0 | |
| parent | 56a91a9a2f5a890f62e53bab9b40d4d2d631a891 (diff) | |
Duplicate settingslib_preference.xml to fix studio build
Per https://b.corp.google.com/issues/372211903#comment4,
this may not be the perfect long-term solution, but it will
unblock the build
Bug: 372211903
Test: local
Test: test_gradle_build.sh
Flag: TEST_ONLY
Change-Id: Ib0d3b47b0ae64e1bc16ba08a7c054e7aca395fda
| -rw-r--r-- | packages/SettingsLib/SettingsTheme/res/layout-v33/settingslib_preference.xml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/packages/SettingsLib/SettingsTheme/res/layout-v33/settingslib_preference.xml b/packages/SettingsLib/SettingsTheme/res/layout-v33/settingslib_preference.xml new file mode 100644 index 000000000000..952562e3d8ea --- /dev/null +++ b/packages/SettingsLib/SettingsTheme/res/layout-v33/settingslib_preference.xml @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- + Copyright (C) 2021 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. + --> + +<LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?android:attr/listPreferredItemHeightSmall" + android:gravity="center_vertical" + android:paddingLeft="?android:attr/listPreferredItemPaddingLeft" + android:paddingStart="?android:attr/listPreferredItemPaddingStart" + android:paddingRight="?android:attr/listPreferredItemPaddingRight" + android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" + android:background="?android:attr/selectableItemBackground" + android:clipToPadding="false" + android:baselineAligned="false"> + + <include layout="@layout/settingslib_icon_frame"/> + + <include layout="@layout/settingslib_preference_frame"/> + + <!-- Preference should place its actual preference widget here. --> + <LinearLayout + android:id="@android:id/widget_frame" + android:layout_width="wrap_content" + android:layout_height="match_parent" + android:gravity="end|center_vertical" + android:paddingLeft="16dp" + android:paddingStart="16dp" + android:paddingRight="0dp" + android:paddingEnd="0dp" + android:orientation="vertical"/> + +</LinearLayout>
\ No newline at end of file |