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

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

Issue 2761583002: Make FadingEdgeScrollView more generic (Closed)
Patch Set: Created 3 years, 9 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 <!-- Base layout for Autofill editors. 6 <!-- Base layout for Autofill editors.
7 Editor fields are expected to be added to the LinearLayout inside of the Sc rollView. 7 Editor fields are expected to be added to the LinearLayout inside of the Sc rollView.
8 --> 8 -->
9 <org.chromium.chrome.browser.payments.ui.FadingEdgeScrollView 9 <org.chromium.chrome.browser.widget.FadingEdgeScrollView
10 xmlns:android="http://schemas.android.com/apk/res/android" 10 xmlns:android="http://schemas.android.com/apk/res/android"
11 android:id="@+id/scroll_view" 11 android:id="@+id/scroll_view"
12 android:layout_width="match_parent" 12 android:layout_width="match_parent"
13 android:layout_height="match_parent" 13 android:layout_height="match_parent"
14 android:fillViewport="true" > 14 android:fillViewport="true" >
15 15
16 <!-- All fields go into this LinearLayout. Note that some horizontal margins are set, but the 16 <!-- All fields go into this LinearLayout. Note that some horizontal margins are set, but the
17 embedded views are responsible for their top margins. --> 17 embedded views are responsible for their top margins. -->
18 <LinearLayout 18 <LinearLayout
19 android:id="@+id/content" 19 android:id="@+id/content"
20 android:layout_width="match_parent" 20 android:layout_width="match_parent"
21 android:layout_height="wrap_content" 21 android:layout_height="wrap_content"
22 android:paddingStart="@dimen/pref_autofill_content_spacing" 22 android:paddingStart="@dimen/pref_autofill_content_spacing"
23 android:paddingEnd="@dimen/pref_autofill_content_spacing" 23 android:paddingEnd="@dimen/pref_autofill_content_spacing"
24 android:orientation="vertical" /> 24 android:orientation="vertical" />
25 25
26 </org.chromium.chrome.browser.payments.ui.FadingEdgeScrollView> 26 </org.chromium.chrome.browser.widget.FadingEdgeScrollView>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698