OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
newt (away)
2015/07/10 16:08:38
I'd suggest calling this powered_by_chrome.xml or
Yusuf
2015/07/10 18:43:47
Done.
| |
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 <TextView xmlns:android="http://schemas.android.com/apk/res/android" | 6 <TextView xmlns:android="http://schemas.android.com/apk/res/android" |
7 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
8 android:layout_height="48dp" | 8 android:layout_height="@dimen/chrome_branding_footer_height" |
newt (away)
2015/07/10 16:08:38
Does this look OK when the font size is set to Hug
Yusuf
2015/07/10 18:43:47
I think it does. Screenshot uploaded to bug.
| |
9 android:paddingStart="16dp" | 9 android:paddingStart="16dp" |
10 android:paddingEnd="16dp" | 10 android:paddingEnd="16dp" |
11 android:ellipsize="end" | 11 android:background="@drawable/bg_menu_chrome_branding" |
12 android:gravity="center_vertical" | 12 android:gravity="start|center_vertical" |
13 android:textSize="12sp" | |
14 android:textColor="#616161" | |
newt (away)
2015/07/10 16:08:38
Another shade of gray! (Not your fault. But please
Yusuf
2015/07/10 18:43:47
Done. Well not done, but put it on my list. :)
| |
15 android:text="@string/chrome_branding_message" | |
13 android:singleLine="true" /> | 16 android:singleLine="true" /> |
OLD | NEW |