blob: 7aa4380ba0a8698d4033a2987c320328c22ef860 [file] [log] [blame]
Santiago Etchebehere273f6552019-01-04 17:33:45 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2019 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
18 android:layout_width="wrap_content"
19 android:layout_height="match_parent"
20 android:orientation="vertical">
21
22 <TextView
23 android:id="@+id/option_label"
Santiago Etchebehere78acbb62019-02-19 15:36:23 -080024 android:layout_width="@dimen/option_tile_width"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080025 android:layout_height="wrap_content"
26 android:layout_gravity="center_horizontal"
27 android:layout_marginBottom="@dimen/theme_option_label_margin"
Santiago Etchebehere78acbb62019-02-19 15:36:23 -080028 android:ellipsize="end"
29 android:gravity="center_horizontal"
30 android:maxLines="1"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080031 android:textAppearance="@style/OptionTitleTextAppearance"/>
32 <RelativeLayout
33 android:id="@+id/option_tile"
34 android:layout_width="@dimen/option_tile_width"
35 android:layout_height="@dimen/option_tile_width"
36 android:layout_gravity="center_horizontal"
37 android:paddingHorizontal="@dimen/option_tile_padding_horizontal"
38 android:paddingVertical="@dimen/option_tile_padding_vertical"
39 android:background="@drawable/option_border">
40 <TextView
41 android:id="@+id/theme_option_font"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080042 android:layout_width="@dimen/theme_option_sample_width"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080043 android:layout_height="@dimen/theme_option_sample_height"
44 android:layout_alignParentTop="true"
45 android:layout_alignParentLeft="true"
46 android:gravity="center"
47 android:textSize="@dimen/theme_option_font_text_size"
48 android:text="@string/theme_font_example"/>
49 <ImageView
50 android:id="@+id/theme_option_shape"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080051 android:layout_width="@dimen/theme_option_sample_width"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080052 android:layout_height="@dimen/theme_option_sample_height"
53 android:layout_alignParentTop="true"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080054 android:layout_alignParentRight="true"
55 android:layout_centerVertical="true"
56 android:padding="@dimen/theme_option_sample_padding"/>
Santiago Etchebehere273f6552019-01-04 17:33:45 -080057 <ImageView
58 android:id="@+id/theme_option_color"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080059 android:layout_width="@dimen/theme_option_sample_width"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080060 android:layout_height="@dimen/theme_option_sample_height"
61 android:layout_alignParentBottom="true"
62 android:layout_alignParentLeft="true"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080063 android:padding="@dimen/theme_option_sample_padding"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080064 android:src="@drawable/option_color"/>
65 <ImageView
66 android:id="@+id/theme_option_icon"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080067 android:layout_width="@dimen/theme_option_sample_width"
Santiago Etchebehere273f6552019-01-04 17:33:45 -080068 android:layout_height="@dimen/theme_option_sample_height"
69 android:layout_alignParentBottom="true"
Santiago Etchebeheref18580d2019-01-10 10:24:42 -080070 android:layout_alignParentRight="true"
71 android:padding="@dimen/theme_option_sample_padding"/>
Santiago Etchebehere273f6552019-01-04 17:33:45 -080072 </RelativeLayout>
Santiago Etchebehere988f99d2018-12-20 17:13:12 -080073</LinearLayout>