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

Unified Diff: content/public/android/java/res/drawable/select_popup_item_selector.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/drawable/select_popup_item_selector.xml
diff --git a/content/public/android/java/res/drawable/select_popup_item_selector.xml b/content/public/android/java/res/drawable/select_popup_item_selector.xml
new file mode 100644
index 0000000000000000000000000000000000000000..986bc0f0239d7a02f0aedaa85e3bcd53561b06dd
--- /dev/null
+++ b/content/public/android/java/res/drawable/select_popup_item_selector.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
Ted C 2014/04/12 01:10:27 missing copyright above this.
+
+ <item android:state_pressed="true">
Ted C 2014/04/12 01:10:27 Actually, I wouldn't recommend using your own sele
keishi 2014/04/15 14:41:07 Done.
+ <color android:color="#D3E3F9" />
+ </item>
+ <item android:state_selected="true">
+ <color android:color="#D3E3F9" />
+ </item>
+ <item android:state_focused="true">
+ <color android:color="#D3E3F9" />
+ </item>
+ <item>
+ <color android:color="#F7F7F7" />
+ </item>
+</selector>

Powered by Google App Engine
This is Rietveld 408576698