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

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: Introduce DropdownPopupWindow 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..2a46ab24c055549f24f4a5c47251b6c0c6af35a0
--- /dev/null
+++ b/content/public/android/java/res/layout/select_popup_item.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<TextView xmlns:android="http://schemas.android.com/apk/res/android"
aurimas (slooooooooow) 2014/04/16 17:36:48 You should be able to reuse ui/android/java/res/la
keishi 2014/04/17 12:25:40 This file wasn't used. Removed.
+ 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="48dp"
+ android:minWidth="100dp"
+ android:paddingStart="4dp"
+ android:paddingEnd="4dp" />

Powered by Google App Engine
This is Rietveld 408576698