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

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

Issue 2670853002: [Payments] Animates EditorView in and out (Closed)
Patch Set: format 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/payments/ui/EditorView.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <!-- PaymentRequestUI editor dialog. --> 6 <!-- PaymentRequestUI editor dialog. -->
7 <RelativeLayout 7 <RelativeLayout
8 xmlns:android="http://schemas.android.com/apk/res/android" 8 xmlns:android="http://schemas.android.com/apk/res/android"
9 xmlns:chrome="http://schemas.android.com/apk/res-auto" > 9 xmlns:chrome="http://schemas.android.com/apk/res-auto"
10 android:background="@android:color/white" >
10 11
11 <!-- Toolbar --> 12 <!-- Toolbar -->
12 <org.chromium.chrome.browser.payments.ui.EditorDialogToolbar 13 <org.chromium.chrome.browser.payments.ui.EditorDialogToolbar
13 android:id="@+id/action_bar" 14 android:id="@+id/action_bar"
14 android:layout_width="match_parent" 15 android:layout_width="match_parent"
15 android:layout_height="?attr/actionBarSize" 16 android:layout_height="?attr/actionBarSize"
16 android:layout_alignParentTop="true" 17 android:layout_alignParentTop="true"
17 android:layout_alignParentStart="true" 18 android:layout_alignParentStart="true"
18 android:layout_alignParentEnd="true" 19 android:layout_alignParentEnd="true"
19 android:background="@color/dark_action_bar_color" /> 20 android:background="@color/dark_action_bar_color" />
(...skipping 21 matching lines...) Expand all
41 <!-- Shadow overlaps the FadingEdgeScrollView. --> 42 <!-- Shadow overlaps the FadingEdgeScrollView. -->
42 <org.chromium.chrome.browser.widget.FadingShadowView 43 <org.chromium.chrome.browser.widget.FadingShadowView
43 android:id="@+id/shadow" 44 android:id="@+id/shadow"
44 android:layout_width="match_parent" 45 android:layout_width="match_parent"
45 android:layout_height="@dimen/action_bar_shadow_height" 46 android:layout_height="@dimen/action_bar_shadow_height"
46 android:layout_below="@id/action_bar" 47 android:layout_below="@id/action_bar"
47 android:layout_alignParentStart="true" 48 android:layout_alignParentStart="true"
48 android:layout_alignParentEnd="true" /> 49 android:layout_alignParentEnd="true" />
49 50
50 </RelativeLayout> 51 </RelativeLayout>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/payments/ui/EditorView.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698