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

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

Issue 1426453003: Notification custom layouts: improve origin display. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test. Created 5 years, 1 month 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <!-- 6 <!--
7 Web notification custom layout, big state. 7 Web notification custom layout, big state.
8 _______________________________________________________ 8 _______________________________________________________
9 | | | 9 | | |
10 | Icon | Title text 1:23 pm | 10 | Icon | Title text 1:23 pm |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 <ImageView 100 <ImageView
101 android:id="@+id/footer_divider" 101 android:id="@+id/footer_divider"
102 style="@style/WebNotificationDivider" 102 style="@style/WebNotificationDivider"
103 android:layout_width="match_parent" 103 android:layout_width="match_parent"
104 android:layout_height="1dp" 104 android:layout_height="1dp"
105 android:layout_marginBottom="8dp" 105 android:layout_marginBottom="8dp"
106 android:contentDescription="@null"/> 106 android:contentDescription="@null"/>
107 107
108 <TextView 108 <TextView
109 android:id="@+id/origin" 109 android:id="@+id/origin"
110 style="@style/WebNotificationOrigin"
111 android:layout_width="match_parent" 110 android:layout_width="match_parent"
112 android:layout_height="wrap_content" 111 android:layout_height="wrap_content"
113 android:layout_marginBottom="10dp" 112 android:layout_marginBottom="10dp"
113 android:layout_marginEnd="8dp"
114 android:singleLine="true" 114 android:singleLine="true"
115 android:ellipsize="end"/> 115 android:ellipsize="start"
116 style="@style/WebNotificationOrigin"/>
116 117
117 </LinearLayout> 118 </LinearLayout>
118 119
119 </RelativeLayout> 120 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698