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

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

Issue 14886012: Implement layout transition animations for the Autofill dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: findbugs errors Created 7 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 3
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 android:id="@+id/autofill_menu_item" 8 android:id="@+id/autofill_menu_item"
9 android:layout_width="match_parent" 9 android:layout_width="match_parent"
10 android:layout_height="@dimen/autofill_menu_item_size" 10 android:layout_height="@dimen/autofill_menu_item_size"
11 android:minHeight="@dimen/autofill_menu_item_size" 11 android:minHeight="@dimen/autofill_menu_item_size"
12 android:gravity="center_vertical" 12 android:gravity="center_vertical"
13 android:orientation="horizontal"> 13 android:orientation="horizontal">
14 <LinearLayout 14 <LinearLayout
15 android:id="@+id/autofill_menu_text" 15 android:id="@+id/autofill_menu_text"
16 android:layout_width="0dp" 16 android:layout_width="0dp"
17 android:layout_height="wrap_content" 17 android:layout_height="wrap_content"
18 android:layout_weight="1" 18 android:layout_weight="1"
19 android:orientation="vertical"> 19 android:orientation="vertical">
20 <LinearLayout 20 <LinearLayout
21 android:id="@+id/autofill_menu_text" 21 android:id="@+id/autofill_menu_text"
22 android:layout_width="wrap_content" 22 android:layout_width="wrap_content"
23 android:layout_height="0dp" 23 android:layout_height="@dimen/autofill_menu_icon_height"
24 android:layout_weight="1"
25 android:orientation="horizontal"> 24 android:orientation="horizontal">
26 <ImageView 25 <ImageView
27 android:id="@+id/cc_icon" 26 android:id="@+id/cc_icon"
28 android:layout_width="@dimen/autofill_menu_icon_width" 27 android:layout_width="@dimen/autofill_menu_icon_width"
29 android:layout_height="@dimen/autofill_menu_icon_height" 28 android:layout_height="@dimen/autofill_menu_icon_height"
30 android:layout_marginStart="5dp"/> 29 android:layout_marginStart="5dp"/>
31 <TextView 30 <TextView
32 android:id="@+id/adapter_item_line_1" 31 android:id="@+id/adapter_item_line_1"
33 android:layout_width="wrap_content" 32 android:layout_width="wrap_content"
34 android:layout_height="wrap_content" 33 android:layout_height="wrap_content"
(...skipping 24 matching lines...) Expand all
59 android:focusable="false" 58 android:focusable="false"
60 android:visibility="gone"/> 59 android:visibility="gone"/>
61 <EditText 60 <EditText
62 android:layout_height="match_parent" 61 android:layout_height="match_parent"
63 android:layout_width="wrap_content" 62 android:layout_width="wrap_content"
64 android:id="@+id/cvc_challenge" 63 android:id="@+id/cvc_challenge"
65 android:visibility="gone" 64 android:visibility="gone"
66 android:drawablePadding="@dimen/autofill_menu_item_padding" 65 android:drawablePadding="@dimen/autofill_menu_item_padding"
67 android:textSize="@dimen/autofill_edit_text_size"/> 66 android:textSize="@dimen/autofill_edit_text_size"/>
68 </LinearLayout> 67 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698