1<?xml version="1.0" encoding="utf-8"?>
2<!--
3**
4** Copyright 2016, 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<!-- Layout for {@link com.android.systemui.pip.tv.PipControlButtonView}. -->
21<merge xmlns:android="http://schemas.android.com/apk/res/android">
22
23    <ImageView android:id="@+id/button"
24        android:layout_width="34dp"
25        android:layout_height="34dp"
26        android:layout_alignParentTop="true"
27        android:layout_centerHorizontal="true"
28        android:focusable="true"
29        android:src="@drawable/tv_pip_button_focused"
30        android:importantForAccessibility="yes" />
31
32    <ImageView android:id="@+id/icon"
33        android:layout_width="34dp"
34        android:layout_height="34dp"
35        android:layout_alignParentTop="true"
36        android:layout_centerHorizontal="true"
37        android:padding="5dp"
38        android:importantForAccessibility="no" />
39
40    <TextView android:id="@+id/desc"
41        android:layout_width="100dp"
42        android:layout_height="wrap_content"
43        android:layout_below="@id/icon"
44        android:layout_centerHorizontal="true"
45        android:layout_marginTop="3dp"
46        android:gravity="center"
47        android:text="@string/pip_fullscreen"
48        android:alpha="0"
49        android:fontFamily="sans-serif"
50        android:textSize="12sp"
51        android:textColor="#EEEEEE"
52        android:importantForAccessibility="no" />
53</merge>
54