Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <!-- Copyright 2016 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
|
Ian Wen
2016/09/27 04:42:00
I wouldn't call this file "divider". Instead, how
ltian
2016/09/28 19:19:46
Done.
| |
| 7 android:layout_width="match_parent" | |
| 8 android:layout_height="wrap_content" | |
| 9 android:gravity="center_vertical" | |
| 10 android:paddingBottom="16dp" | |
| 11 android:paddingTop="16dp" | |
| 12 android:paddingStart="12dp" | |
| 13 android:paddingEnd="6dp"> | |
| 14 | |
| 15 <TextView | |
| 16 android:text="@string/recently_visited" | |
| 17 android:layout_width="match_parent" | |
|
Ian Wen
2016/09/27 04:42:00
Indentation not correct. You should install androi
ltian
2016/09/28 19:19:46
Done.
| |
| 18 android:layout_height="wrap_content" | |
| 19 android:textColor="@color/light_active_color" | |
| 20 android:textStyle="bold" | |
| 21 android:textSize="15sp" | |
| 22 android:gravity="center_vertical"/> | |
| 23 | |
| 24 </LinearLayout> | |
| OLD | NEW |