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

Side by Side Diff: chrome/android/java/res/layout/autofill_address_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.
Ted C 2013/03/06 01:41:56 Hmm...does this work? I thought we needed to do t
Yusuf 2013/03/06 19:50:00 Done.
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"?>
Ted C 2013/03/06 01:41:56 Also, this has gone above the copyright in all oth
Yusuf 2013/03/06 19:50:00 Done.
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content"
8 android:orientation="vertical">
9 <TextView
10 android:id="@+id/name"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:textStyle="bold"
14 android:textSize="14sp"
15 android:padding="2dp"/>
16 <TextView
17 android:id="@+id/address"
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:textSize="12sp"
21 android:padding="2dp"/>
22 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698