1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2018 The Android Open Source Project 4 5 Licensed under the Apache License, Version 2.0 (the "License"); 6 you may not use this file except in compliance with the License. 7 You may obtain a copy of the License at 8 9 http://www.apache.org/licenses/LICENSE-2.0 10 11 Unless required by applicable law or agreed to in writing, software 12 distributed under the License is distributed on an "AS IS" BASIS, 13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 See the License for the specific language governing permissions and 15 limitations under the License. 16 --> 17 18<!-- Based off preference_material_settings.xml except that ripple on only on the left side. --> 19<LinearLayout 20 xmlns:android="http://schemas.android.com/apk/res/android" 21 xmlns:settings="http://schemas.android.com/apk/res-auto" 22 android:layout_width="match_parent" 23 android:layout_height="wrap_content" 24 android:minHeight="?android:attr/listPreferredItemHeightSmall" 25 android:gravity="center_vertical" 26 android:background="@android:color/transparent" 27 android:paddingStart="?android:attr/listPreferredItemPaddingStart" 28 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" 29 android:clipToPadding="false"> 30 31 <LinearLayout 32 android:layout_width="0dp" 33 android:layout_height="match_parent" 34 android:layout_weight="1" 35 android:background="?android:attr/selectableItemBackground" 36 android:gravity="start|center_vertical" 37 android:clipToPadding="false"> 38 39 <LinearLayout 40 android:id="@+id/checkbox_container" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:gravity="start|center_vertical" 44 android:minWidth="48dp" 45 android:minHeight="48dp" 46 android:orientation="horizontal" 47 android:clipToPadding="false" 48 android:paddingTop="4dp" 49 android:paddingBottom="4dp"> 50 <include layout="@layout/preference_widget_checkbox" /> 51 </LinearLayout> 52 53 <RelativeLayout 54 android:layout_width="wrap_content" 55 android:layout_height="wrap_content" 56 android:layout_weight="1" 57 android:paddingTop="16dp" 58 android:paddingBottom="16dp"> 59 60 <TextView 61 android:id="@android:id/title" 62 android:layout_width="wrap_content" 63 android:layout_height="wrap_content" 64 android:maxLines="2" 65 android:textAppearance="?android:attr/textAppearanceListItem" 66 android:ellipsize="marquee" /> 67 68 <TextView 69 android:id="@android:id/summary" 70 android:layout_width="wrap_content" 71 android:layout_height="wrap_content" 72 android:layout_below="@android:id/title" 73 android:layout_alignStart="@android:id/title" 74 android:textAppearance="?android:attr/textAppearanceListItemSecondary" 75 android:textColor="?android:attr/textColorSecondary" 76 android:maxLines="10" /> 77 78 </RelativeLayout> 79 80 </LinearLayout> 81 82 <include layout="@layout/preference_two_target_divider" /> 83 84 <!-- Preference should place its actual preference widget here. --> 85 <LinearLayout 86 android:id="@android:id/widget_frame" 87 android:layout_width="wrap_content" 88 android:layout_height="match_parent" 89 android:minWidth="@dimen/two_target_min_width" 90 android:gravity="center" 91 android:orientation="vertical" /> 92 93</LinearLayout>