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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <selector xmlns:android="http://schemas.android.com/apk/res/android">
Ted C 2014/04/12 01:10:27 missing copyright above this.
3
4 <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.
5 <color android:color="#D3E3F9" />
6 </item>
7 <item android:state_selected="true">
8 <color android:color="#D3E3F9" />
9 </item>
10 <item android:state_focused="true">
11 <color android:color="#D3E3F9" />
12 </item>
13 <item>
14 <color android:color="#F7F7F7" />
15 </item>
16 </selector>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698