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

Unified Diff: content/public/android/java/res/layout/select_popup_item.xml

Issue 231953003: Show Ash like <select> popup on Android tablets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@newpopupx
Patch Set: Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/res/layout/select_popup_item.xml
diff --git a/content/public/android/java/res/layout/select_popup_item.xml b/content/public/android/java/res/layout/select_popup_item.xml
new file mode 100644
index 0000000000000000000000000000000000000000..717fa9e19af1363f90943ecaf29b0ceacb5a702d
--- /dev/null
+++ b/content/public/android/java/res/layout/select_popup_item.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/label"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:text="@+id/label"
+ android:textSize="20dp"
+ android:gravity="center_vertical"
+ android:singleLine="true"
+ android:minHeight="38dp"
Ted C 2014/04/12 01:10:27 minHeight should be 48dp per android touch guideli
keishi 2014/04/15 14:41:07 Done.
+ android:paddingStart="4dp"
+ android:paddingEnd="4dp" />

Powered by Google App Engine
This is Rietveld 408576698