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

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

Issue 12412003: Initial UI structure for autofill dialog (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Styling fixes Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 <?xml version="1.0" encoding="utf-8"?>
5 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content" >
8 <ImageView
9 android:id="@+id/cc_icon"
10 android:layout_width="44dp"
11 android:layout_height="44dp"
12 android:layout_marginLeft="5dp"
13 android:layout_marginRight="5dp"/>
14 <TextView
15 android:id="@+id/cc_number"
16 android:layout_toRightOf="@id/cc_icon"
17 android:layout_width="wrap_content"
18 android:layout_height="wrap_content"
19 android:textStyle="bold"
20 android:textSize="14sp"/>
21 <TextView
22 android:id="@+id/cc_info"
23 android:layout_below="@id/cc_number"
24 android:layout_toRightOf="@id/cc_icon"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:textSize="12sp"/>
28 </RelativeLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698