blob: 1fec49e65b512a259dce59277d5b8db6d984905b [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 Kim977dcdc2016-01-20 19:21:08 +090020<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080021 android:layout_width="match_parent"
Jaewan Kim977dcdc2016-01-20 19:21:08 +090022 android:layout_height="match_parent"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080023 android:orientation="horizontal"
24 android:paddingTop="350dp"
25 android:background="#CC000000"
26 android:gravity="top|center_horizontal"
27 android:clipChildren="false">
Youngsang Chof1647922015-12-17 13:39:39 -080028
Jaewan Kim1a9dc562016-02-17 13:41:51 -080029 <LinearLayout
30 android:layout_width="34dp"
Jaewan Kim977dcdc2016-01-20 19:21:08 +090031 android:layout_height="wrap_content"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080032 android:layout_marginEnd="3dp"
33 android:orientation="vertical"
34 android:gravity="center"
35 android:clipChildren="false">
Youngsang Chof1647922015-12-17 13:39:39 -080036
Jaewan Kim62338192016-02-25 10:00:05 -080037 <ImageView android:id="@+id/full_button"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080038 android:layout_width="wrap_content"
39 android:layout_height="wrap_content"
40 android:focusable="true"
41 android:src="@drawable/tv_pip_full_button" />
Youngsang Chof1647922015-12-17 13:39:39 -080042
Jaewan Kim1a9dc562016-02-17 13:41:51 -080043 <TextView android:id="@+id/full_desc"
44 android:layout_width="100dp"
45 android:layout_height="wrap_content"
46 android:layout_marginTop="3dp"
47 android:gravity="center"
48 android:visibility="invisible"
49 android:text="@string/pip_fullscreen"
50 android:fontFamily="sans-serif"
51 android:textSize="12sp"
52 android:textColor="#EEEEEE"
53 android:clipChildren="false" />
54 </LinearLayout>
55
Jaewan Kim62338192016-02-25 10:00:05 -080056 <LinearLayout android:id="@+id/play_pause"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080057 android:layout_width="34dp"
Jaewan Kim977dcdc2016-01-20 19:21:08 +090058 android:layout_height="wrap_content"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080059 android:layout_marginStart="3dp"
60 android:layout_marginEnd="3dp"
61 android:orientation="vertical"
62 android:gravity="center"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080063 android:clipChildren="false">
64
Jaewan Kim62338192016-02-25 10:00:05 -080065 <ImageView android:id="@+id/play_pause_button"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080066 android:layout_width="wrap_content"
67 android:layout_height="wrap_content"
68 android:focusable="true"
69 android:src="@drawable/tv_pip_pause_button" />
70
71 <TextView android:id="@+id/play_pause_desc"
72 android:layout_width="100dp"
73 android:layout_height="wrap_content"
74 android:layout_marginTop="3dp"
75 android:gravity="center"
76 android:visibility="invisible"
77 android:text="@string/pip_pause"
78 android:fontFamily="sans-serif"
79 android:textSize="12sp"
80 android:textColor="#EEEEEE"
81 android:clipChildren="false" />
82 </LinearLayout>
83
84 <LinearLayout
85 android:layout_width="34dp"
86 android:layout_height="wrap_content"
87 android:layout_marginStart="3dp"
88 android:orientation="vertical"
89 android:gravity="center"
90 android:clipChildren="false">
91
Jaewan Kim62338192016-02-25 10:00:05 -080092 <ImageView android:id="@+id/close_button"
Jaewan Kim1a9dc562016-02-17 13:41:51 -080093 android:layout_width="wrap_content"
94 android:layout_height="wrap_content"
95 android:focusable="true"
96 android:src="@drawable/tv_pip_close_button" />
97
98 <TextView android:id="@+id/close_desc"
99 android:layout_width="100dp"
100 android:layout_height="wrap_content"
101 android:layout_marginTop="3dp"
102 android:gravity="center"
103 android:visibility="invisible"
104 android:text="@string/pip_close"
105 android:fontFamily="sans-serif"
106 android:textSize="12sp"
107 android:textColor="#EEEEEE"
108 android:clipChildren="false" />
109 </LinearLayout>
Jaewan Kim977dcdc2016-01-20 19:21:08 +0900110</LinearLayout>