blob: c5c7e843208b140aaeb363faf61e527b118fb1c7 [file] [log] [blame]
Youngsang Chof1647922015-12-17 13:39:39 -08001<?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
Jaewan Kimc92a7d12016-02-15 17:33:25 -080020<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
Youngsang Chof1647922015-12-17 13:39:39 -080021 android:layout_width="match_parent"
Jaewan Kimc92a7d12016-02-15 17:33:25 -080022 android:layout_height="match_parent">
23
24 <TextView
25 android:id="@+id/guide_overlay"
26 android:layout_width="match_parent"
Jaewan Kimeafce452016-03-14 14:56:57 +090027 android:layout_height="wrap_content"
Jaewan Kimc92a7d12016-02-15 17:33:25 -080028 android:layout_alignParentBottom="true"
Jaewan Kimeafce452016-03-14 14:56:57 +090029 android:paddingTop="6dp"
30 android:paddingBottom="6dp"
31 android:paddingStart="10dp"
32 android:paddingEnd="10dp"
Jaewan Kim236950e2016-03-04 14:41:46 +090033 android:textSize="14sp"
34 android:textColor="#EEEEEE"
35 android:fontFamily="sans-serif"
36 android:background="@drawable/tv_pip_overlay_background"
Jaewan Kimeafce452016-03-14 14:56:57 +090037 android:lineSpacingMultiplier="1.465"
Jaewan Kim236950e2016-03-04 14:41:46 +090038 android:gravity="center"
Jaewan Kimeafce452016-03-14 14:56:57 +090039 android:maxLines="2"
Jaewan Kimc92a7d12016-02-15 17:33:25 -080040 android:text="@string/pip_hold_home" />
41 <LinearLayout
42 android:id="@+id/guide_buttons"
43 android:layout_width="wrap_content"
44 android:layout_height="wrap_content"
45 android:layout_alignParentBottom="true"
46 android:layout_centerHorizontal="true"
47 android:orientation="horizontal">
48 <ImageView
Jaewan Kim8f584b82016-03-22 22:16:59 +090049 android:layout_width="19dp"
50 android:layout_height="19dp"
Jaewan Kimc92a7d12016-02-15 17:33:25 -080051 android:src="@drawable/ic_fullscreen_white_24dp" />
52 <ImageView
Jaewan Kim8f584b82016-03-22 22:16:59 +090053 android:layout_width="19dp"
54 android:layout_height="19dp"
Jaewan Kimc92a7d12016-02-15 17:33:25 -080055 android:src="@drawable/ic_close_white" />
Jaewan Kim8f584b82016-03-22 22:16:59 +090056 <ImageView
57 android:id="@+id/guide_button_play_pause"
58 android:layout_width="19dp"
59 android:layout_height="19dp"
60 android:src="@drawable/ic_pause_white_24dp" />
Jaewan Kimc92a7d12016-02-15 17:33:25 -080061 </LinearLayout>
62</RelativeLayout>