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

Unified Diff: content/public/android/java/res/layout/select_popup_dialog.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_dialog.xml
diff --git a/content/public/android/java/res/layout/select_popup_dialog.xml b/content/public/android/java/res/layout/select_popup_dialog.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7fe3875c6f2f8d4caff7672ac1075a2df32ab3c9
--- /dev/null
+++ b/content/public/android/java/res/layout/select_popup_dialog.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+
Ted C 2014/04/12 01:10:27 missing the copyright
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:background="@drawable/select_popup"
+ android:id="@+id/select_popup_shadow">
+
+ <ListView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/listView"
+ android:divider="@null"
+ android:background="#F7F7F7"
+ android:listSelector="@drawable/select_popup_item_selector"
+ android:layout_gravity="center_horizontal" />
+</LinearLayout>

Powered by Google App Engine
This is Rietveld 408576698