1<?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
20<merge
21    xmlns:android="http://schemas.android.com/apk/res/android">
22  <LinearLayout
23      android:id="@+id/controls_no_favorites_group"
24      android:layout_width="match_parent"
25      android:layout_height="wrap_content"
26      android:orientation="vertical"
27      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"
31      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"
39        android:layout_marginBottom="16dp" />
40
41    <TextView
42        style="@style/TextAppearance.ControlSetup.Title"
43        android:id="@+id/controls_title"
44        android:text="@string/quick_controls_title"
45        android:layout_width="wrap_content"
46        android:layout_height="wrap_content"
47        android:layout_gravity="center" />
48
49    <TextView
50        style="@style/TextAppearance.ControlSetup.Subtitle"
51        android:id="@+id/controls_subtitle"
52        android:layout_marginTop="12dp"
53        android:layout_width="wrap_content"
54        android:layout_height="wrap_content"
55        android:layout_gravity="center" />
56  </LinearLayout>
57</merge>
58