1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright 2018 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<merge xmlns:android="http://schemas.android.com/apk/res/android"> 18 19 <LinearLayout 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:layout_marginLeft="16dp" 23 android:layout_marginTop="16dp" 24 android:layout_marginRight="16dp" 25 android:gravity="center_vertical|start" 26 android:orientation="horizontal"> 27 28 <TextView 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:text="@string/label_orientation" 32 android:textAppearance="@android:style/TextAppearance.Medium" /> 33 34 <Spinner 35 android:id="@+id/orientation_spinner" 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" /> 38 39 </LinearLayout> 40 41 <LinearLayout 42 android:layout_width="wrap_content" 43 android:layout_height="wrap_content" 44 android:layout_marginLeft="16dp" 45 android:layout_marginRight="16dp" 46 android:gravity="center_vertical|start" 47 android:orientation="horizontal"> 48 49 <TextView 50 android:layout_width="wrap_content" 51 android:layout_height="wrap_content" 52 android:text="@string/label_overscroll" 53 android:textAppearance="@android:style/TextAppearance.Medium" /> 54 55 <Spinner 56 android:id="@+id/overscroll_mode_spinner" 57 android:layout_width="wrap_content" 58 android:layout_height="wrap_content" /> 59 60 </LinearLayout> 61 62 <CheckBox 63 android:id="@+id/disable_user_input_checkbox" 64 android:layout_width="wrap_content" 65 android:layout_height="wrap_content" 66 android:layout_marginStart="16dp" 67 android:layout_marginLeft="16dp" 68 android:text="@string/disable_user_input" 69 android:textAppearance="@android:style/TextAppearance.Medium" /> 70 71 <LinearLayout 72 android:layout_width="match_parent" 73 android:layout_height="wrap_content" 74 android:layout_marginLeft="16dp" 75 android:layout_marginRight="16dp" 76 android:gravity="center_vertical|start" 77 android:orientation="horizontal"> 78 79 <Button 80 android:id="@+id/jump_button" 81 android:layout_width="wrap_content" 82 android:layout_height="wrap_content" 83 android:layout_marginStart="8dp" 84 android:layout_marginLeft="8dp" 85 android:text="@string/label_jump_to" 86 android:textAppearance="@android:style/TextAppearance.Medium" /> 87 88 <Spinner 89 android:id="@+id/card_spinner" 90 android:layout_width="wrap_content" 91 android:layout_height="wrap_content" 92 android:layout_marginStart="8dp" 93 android:layout_marginLeft="8dp" /> 94 95 <CheckBox 96 android:id="@+id/smooth_scroll_checkbox" 97 android:layout_width="wrap_content" 98 android:layout_height="wrap_content" 99 android:layout_marginStart="8dp" 100 android:layout_marginLeft="8dp" 101 android:text="@string/checkbox_smoothscroll" 102 android:textAppearance="@android:style/TextAppearance.Medium" /> 103 104 </LinearLayout> 105 106 <LinearLayout 107 android:layout_width="match_parent" 108 android:layout_height="wrap_content" 109 android:layout_marginLeft="16dp" 110 android:layout_marginRight="16dp" 111 android:layout_marginBottom="8dp" 112 android:gravity="center_vertical|start" 113 android:orientation="horizontal"> 114 115 <CheckBox 116 android:id="@+id/rotate_checkbox" 117 android:layout_width="wrap_content" 118 android:layout_height="wrap_content" 119 android:text="@string/checkbox_rotate" 120 android:textAppearance="@android:style/TextAppearance.Medium" /> 121 122 <CheckBox 123 android:id="@+id/translate_checkbox" 124 android:layout_width="wrap_content" 125 android:layout_height="wrap_content" 126 android:layout_marginStart="8dp" 127 android:layout_marginLeft="8dp" 128 android:text="@string/checkbox_translate" 129 android:textAppearance="@android:style/TextAppearance.Medium" /> 130 131 <CheckBox 132 android:id="@+id/scale_checkbox" 133 android:layout_width="wrap_content" 134 android:layout_height="wrap_content" 135 android:layout_marginStart="8dp" 136 android:layout_marginLeft="8dp" 137 android:text="@string/checkbox_scale" 138 android:textAppearance="@android:style/TextAppearance.Medium" /> 139 140 </LinearLayout> 141 142 <View 143 android:layout_width="match_parent" 144 android:layout_height="1dp" 145 android:background="#000000" /> 146 147</merge>