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

Side by Side Diff: ui/android/java/res/layout/date_time_suggestion.xml

Issue 23623019: Support datalist for date/time input types on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years 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 | « content/renderer/renderer_date_time_picker.cc ('k') | no next file » | 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 2013 The Chromium Authors. All rights reserved. 2 <!-- Copyright 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 7
8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 8 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
9 android:id="@+id/autofill_menu_text" 9 android:id="@+id/date_time_suggestion"
10 android:orientation="vertical" 10 android:layout_width="match_parent"
11 android:layout_height="wrap_content"
12 android:minHeight="44dp"
13 android:orientation="horizontal"
11 android:gravity="center_vertical"> 14 android:gravity="center_vertical">
12 15 <TextView
13 <TextView android:id="@+id/autofill_label" 16 android:id="@+id/date_time_suggestion_value"
14 android:layout_width="wrap_content" 17 android:layout_width="wrap_content"
15 android:layout_height="wrap_content" 18 android:layout_height="wrap_content"
16 android:layout_marginStart="10dp" 19 android:layout_marginStart="10dp"
17 android:layout_marginEnd="10dp" 20 android:layout_marginEnd="10dp"
18 android:ellipsize="end" 21 android:ellipsize="end"
19 android:singleLine="true" 22 android:singleLine="true"
23 android:textSize="18sp" />
24 <TextView
25 android:id="@+id/date_time_suggestion_label"
26 android:layout_width="0dp"
27 android:layout_height="wrap_content"
28 android:layout_marginEnd="10dp"
29 android:layout_weight="1"
20 android:textSize="18sp" 30 android:textSize="18sp"
21 android:includeFontPadding="false"/> 31 android:gravity="end"
22 <TextView android:id="@+id/autofill_sublabel"
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 android:layout_marginStart="10dp"
26 android:layout_marginEnd="10dp"
27 android:textSize="14sp"
28 android:textColor="#8b8b8b" 32 android:textColor="#8b8b8b"
29 android:ellipsize="end" 33 android:ellipsize="end"
30 android:singleLine="true" 34 android:singleLine="true" />
31 android:includeFontPadding="false"/>
32 </LinearLayout> 35 </LinearLayout>
OLDNEW
« no previous file with comments | « content/renderer/renderer_date_time_picker.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698