OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="match_parent" | 10 android:layout_height="match_parent" |
11 android:orientation="vertical" > | 11 android:orientation="vertical" > |
12 | 12 |
13 <android.support.v7.widget.Toolbar | 13 <android.support.v7.widget.Toolbar |
14 android:id="@+id/toolbar" | 14 android:id="@+id/toolbar" |
15 android:layout_width="match_parent" | 15 android:layout_width="match_parent" |
16 android:layout_height="?attr/actionBarSize" | 16 android:layout_height="?attr/actionBarSize" |
17 android:background="?attr/colorPrimary" /> | 17 android:background="?attr/colorPrimary" /> |
18 | 18 |
19 <View | 19 <View |
20 android:layout_width="match_parent" | 20 android:layout_width="match_parent" |
21 android:layout_height="4dp" | 21 android:layout_height="4dp" |
22 android:layout_marginBottom="-4dp" | 22 android:layout_marginBottom="-4dp" |
23 android:background="@drawable/eb_title_bar_shadow" /> | 23 android:background="@drawable/bookmark_title_bar_shadow" /> |
24 | 24 |
25 <ScrollView | 25 <ScrollView |
26 android:layout_width="match_parent" | 26 android:layout_width="match_parent" |
27 android:layout_height="match_parent" > | 27 android:layout_height="match_parent" > |
28 | 28 |
29 <LinearLayout | 29 <LinearLayout |
30 android:layout_width="match_parent" | 30 android:layout_width="match_parent" |
31 android:layout_height="wrap_content" | 31 android:layout_height="wrap_content" |
32 android:layout_marginEnd="16dp" | 32 android:layout_marginEnd="16dp" |
33 android:layout_marginStart="16dp" | 33 android:layout_marginStart="16dp" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 android:layout_height="wrap_content" | 112 android:layout_height="wrap_content" |
113 android:layout_gravity="center_vertical" | 113 android:layout_gravity="center_vertical" |
114 android:textAllCaps="true" | 114 android:textAllCaps="true" |
115 android:textColor="@color/light_active_color" | 115 android:textColor="@color/light_active_color" |
116 android:textSize="15sp" /> | 116 android:textSize="15sp" /> |
117 | 117 |
118 </LinearLayout> | 118 </LinearLayout> |
119 </LinearLayout> | 119 </LinearLayout> |
120 </ScrollView> | 120 </ScrollView> |
121 </LinearLayout> | 121 </LinearLayout> |
OLD | NEW |