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

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

Issue 2654193002: [Android History] List item shadows and width constrained styling (Closed)
Patch Set: Changes from dgn@ and dfalcantara@ reviews Created 3 years, 10 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 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 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 6 <LinearLayout 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="wrap_content" 8 android:layout_height="wrap_content"
9 android:orientation="vertical" > 9 android:orientation="vertical"
10 android:layout_marginBottom="8dp" >
10 11
11 <org.chromium.ui.widget.TextViewWithClickableSpans 12 <org.chromium.ui.widget.TextViewWithClickableSpans
12 android:id="@+id/signed_in_not_synced" 13 android:id="@+id/signed_in_not_synced"
13 style="@style/PrivacyDisclaimerText" /> 14 style="@style/PrivacyDisclaimerText" />
14 15
15 <org.chromium.ui.widget.TextViewWithClickableSpans 16 <org.chromium.ui.widget.TextViewWithClickableSpans
16 android:id="@+id/signed_in_synced" 17 android:id="@+id/signed_in_synced"
17 style="@style/PrivacyDisclaimerText" /> 18 style="@style/PrivacyDisclaimerText" />
18 19
19 <org.chromium.ui.widget.TextViewWithClickableSpans 20 <org.chromium.ui.widget.TextViewWithClickableSpans
20 android:id="@+id/other_forms_of_browsing_history" 21 android:id="@+id/other_forms_of_browsing_history"
21 style="@style/PrivacyDisclaimerText" /> 22 style="@style/PrivacyDisclaimerText" />
22 23
23 <FrameLayout 24 <FrameLayout
24 android:layout_width="match_parent" 25 android:layout_width="match_parent"
25 android:layout_height="wrap_content" 26 android:layout_height="wrap_content"
26 android:layout_marginTop="16dp" 27 android:layout_marginTop="16dp"
27 android:layout_marginBottom="8dp" 28 android:background="@drawable/list_item_single" >
28 android:background="@android:color/white" >
29 29
30 <Button 30 <Button
31 android:id="@+id/clear_browsing_data_button" 31 android:id="@+id/clear_browsing_data_button"
32 android:layout_width="match_parent" 32 android:layout_width="match_parent"
33 android:layout_height="wrap_content" 33 android:layout_height="wrap_content"
34 style="@style/ButtonCompatBorderless" 34 style="@style/ButtonCompatBorderless"
35 android:paddingTop="16dp" 35 android:paddingTop="16dp"
36 android:paddingBottom="16dp" 36 android:paddingBottom="16dp"
37 android:paddingStart="16dp" 37 android:paddingStart="16dp"
38 android:paddingEnd="16dp" 38 android:paddingEnd="16dp"
39 android:gravity="center_vertical|start" 39 android:gravity="center_vertical|start"
40 android:text="@string/open_clear_browsing_data_dialog_button" 40 android:text="@string/open_clear_browsing_data_dialog_button"
41 android:textAllCaps="true" 41 android:textAllCaps="true"
42 android:textColor="@color/history_cbd_button_tint" 42 android:textColor="@color/history_cbd_button_tint"
43 android:textSize="16sp" /> 43 android:textSize="16sp" />
44 44
45 </FrameLayout> 45 </FrameLayout>
46 </LinearLayout> 46 </LinearLayout>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/history_date_view.xml ('k') | chrome/android/java/res/layout/history_item_view.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698