1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2015 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<LinearLayout 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:layout_width="match_parent" 21 android:layout_height="wrap_content" 22 android:paddingStart="?android:attr/listPreferredItemPaddingStart" 23 android:paddingEnd="?android:attr/listPreferredItemPaddingEnd" 24 android:paddingTop="8dp" 25 android:paddingBottom="8dp" 26 android:orientation="vertical"> 27 28 <LinearLayout 29 android:id="@+id/r_group" 30 android:layout_width="match_parent" 31 android:layout_height="wrap_content" 32 android:paddingTop="4dp" 33 android:paddingBottom="4dp" 34 android:orientation="horizontal"> 35 36 <TextView 37 android:layout_width="wrap_content" 38 android:layout_height="wrap_content" 39 android:text="@string/color_modification_r" 40 android:gravity="center" 41 android:textAppearance="?android:attr/textAppearanceMedium" /> 42 43 <SeekBar android:id="@*android:id/seekbar" 44 android:layout_marginStart="16dp" 45 android:layout_gravity="center_vertical" 46 android:layout_width="0dp" 47 android:layout_height="wrap_content" 48 android:layout_weight="1" /> 49 </LinearLayout> 50 51 <LinearLayout 52 android:id="@+id/g_group" 53 android:layout_width="match_parent" 54 android:layout_height="wrap_content" 55 android:paddingTop="4dp" 56 android:paddingBottom="4dp" 57 android:orientation="horizontal"> 58 59 <TextView 60 android:layout_width="wrap_content" 61 android:layout_height="wrap_content" 62 android:text="@string/color_modification_g" 63 android:gravity="center" 64 android:textAppearance="?android:attr/textAppearanceMedium" /> 65 66 <SeekBar android:id="@*android:id/seekbar" 67 android:layout_marginStart="16dp" 68 android:layout_gravity="center_vertical" 69 android:layout_width="0dp" 70 android:layout_height="wrap_content" 71 android:layout_weight="1" /> 72 </LinearLayout> 73 74 <LinearLayout 75 android:id="@+id/b_group" 76 android:layout_width="match_parent" 77 android:layout_height="wrap_content" 78 android:paddingTop="4dp" 79 android:paddingBottom="4dp" 80 android:orientation="horizontal"> 81 82 <TextView 83 android:layout_width="wrap_content" 84 android:layout_height="wrap_content" 85 android:text="@string/color_modification_b" 86 android:gravity="center" 87 android:textAppearance="?android:attr/textAppearanceMedium" /> 88 89 <SeekBar android:id="@*android:id/seekbar" 90 android:layout_marginStart="16dp" 91 android:layout_gravity="center_vertical" 92 android:layout_width="0dp" 93 android:layout_height="wrap_content" 94 android:layout_weight="1" /> 95 </LinearLayout> 96 97</LinearLayout> 98