blob: 1b24ee9ed234ecb2473e3a3465ecd87ba12a73ee [file] [log] [blame]
Matt Pietal37cc1902020-02-06 10:25:56 -05001<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2020, The Android Open Source Project
5**
6** Licensed under the Apache License, Version 2.0 (the "License");
7** you may not use this file except in compliance with the License.
8** You may obtain a copy of the License at
9**
10** http://www.apache.org/licenses/LICENSE-2.0
11**
12** Unless required by applicable law or agreed to in writing, software
13** distributed under the License is distributed on an "AS IS" BASIS,
14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15** See the License for the specific language governing permissions and
16** limitations under the License.
17*/
18-->
19
Matt Pietal22231792020-01-23 09:51:09 -050020<merge
21 xmlns:android="http://schemas.android.com/apk/res/android">
Matt Pietal37cc1902020-02-06 10:25:56 -050022 <LinearLayout
23 android:id="@+id/controls_no_favorites_group"
Matt Pietal22231792020-01-23 09:51:09 -050024 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
Matt Pietal37cc1902020-02-06 10:25:56 -050026 android:orientation="vertical"
Matt Pietalde1606e2020-05-11 16:21:58 -040027 android:paddingVertical="@dimen/controls_setup_vertical_padding"
28 android:layout_marginLeft="@dimen/global_actions_side_margin"
29 android:layout_marginRight="@dimen/global_actions_side_margin"
30 android:layout_marginTop="@dimen/controls_setup_top_margin"
Matt Pietal37cc1902020-02-06 10:25:56 -050031 android:background="@drawable/control_no_favorites_background">
32
33 <LinearLayout
34 android:id="@+id/controls_icon_row"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:layout_gravity="center"
38 android:orientation="horizontal"
Matt Pietalde1606e2020-05-11 16:21:58 -040039 android:layout_marginBottom="16dp" />
Matt Pietal37cc1902020-02-06 10:25:56 -050040
41 <TextView
Matt Pietal61266442020-03-17 12:53:44 -040042 style="@style/TextAppearance.ControlSetup.Title"
Matt Pietal37cc1902020-02-06 10:25:56 -050043 android:id="@+id/controls_title"
44 android:text="@string/quick_controls_title"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
Matt Pietal61266442020-03-17 12:53:44 -040047 android:layout_gravity="center" />
48
49 <TextView
50 style="@style/TextAppearance.ControlSetup.Subtitle"
51 android:id="@+id/controls_subtitle"
Matt Pietal61266442020-03-17 12:53:44 -040052 android:layout_marginTop="12dp"
53 android:layout_width="wrap_content"
54 android:layout_height="wrap_content"
55 android:layout_gravity="center" />
Matt Pietal37cc1902020-02-06 10:25:56 -050056 </LinearLayout>
Matt Pietal22231792020-01-23 09:51:09 -050057</merge>