Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: chrome/android/java/res/layout/remote_notification_bar.xml

Issue 928643003: Upstream Chrome for Android Cast. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix dependencies (second attempt). Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. -->
5
6 <!--
7 Notification layout for remote controls.
8 ___________________________________________________________
9 | | | |
10 | | [Living Room TV] | _ |
11 | ICON | =====0============================= | || |_| |
12 | | Playing "[Web Page Title]" | |
13 |________|______________________________________|_________|
14 -->
15 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
16 android:layout_width="match_parent"
17 android:layout_height="wrap_content"
18 android:gravity="center_vertical">
19
20 <FrameLayout
21 android:layout_width="@android:dimen/notification_large_icon_width"
22 android:layout_height="@android:dimen/notification_large_icon_height" >
23
24 <ImageView
25 android:layout_width="match_parent"
26 android:layout_height="match_parent"
27 android:contentDescription="@null"
28 android:scaleType="centerInside"
29 android:src="@drawable/notification_icon_bg" />
30
31 <ImageView
32 android:id="@+id/icon"
33 android:layout_width="match_parent"
34 android:layout_height="match_parent"
35 android:contentDescription="@null"
36 android:scaleType="center"
37 android:src="@drawable/ic_notification_media_route" />
38 </FrameLayout>
39
40 <LinearLayout
41 android:layout_width="0dp"
42 android:layout_height="wrap_content"
43 android:layout_marginStart="7dp"
44 android:layout_weight="1"
45 android:orientation="vertical">
46
47 <TextView
48 android:id="@+id/title"
49 android:layout_width="match_parent"
50 android:layout_height="wrap_content"
51 android:layout_gravity="start"
52 android:ellipsize="end"
53 android:singleLine="true"
54 style="@style/RemoteNotificationTitle"/>
55
56 <!-- android:visibility is set to 'gone' by default since we don't want to show it as long
57 as the duration of the video is unknown. The duration can be unknow n in the case of
58 live streaming videos or YouTube. -->
59 <ProgressBar
60 android:id="@+id/progress"
61 android:layout_width="match_parent"
62 android:layout_height="wrap_content"
63 android:visibility="gone"
64 style="@style/RemoteNotificationProgressBar"/>
65
66 <TextView
67 android:id="@+id/status"
68 android:layout_width="match_parent"
69 android:layout_height="wrap_content"
70 android:layout_gravity="start"
71 android:ellipsize="end"
72 android:singleLine="true"
73 style="@style/RemoteNotificationText"/>
74
75 </LinearLayout>
76
77 <ImageButton
78 android:id="@+id/playpause"
79 android:src="@drawable/ic_vidcontrol_play"
80 android:layout_width="40dp"
81 android:layout_height="48dp"
82 android:layout_marginStart="8dp"
83 android:gravity="center"
84 android:padding="8dp"
85 android:scaleType="center"
86 android:background="?android:attr/selectableItemBackground"
87 android:contentDescription="@null"/>
88
89 <ImageButton
90 android:id="@+id/stop"
91 android:src="@drawable/ic_vidcontrol_stop"
92 android:layout_width="40dp"
93 android:layout_height="48dp"
94 android:layout_marginEnd="8dp"
95 android:gravity="center"
96 android:padding="8dp"
97 android:scaleType="center"
98 android:background="?android:attr/selectableItemBackground"
99 android:contentDescription="@string/accessibility_stop"/>
100
101 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/expanded_cast_controller.xml ('k') | chrome/android/java/res/values-v17/styles.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698