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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2
Ted C 2014/04/12 01:10:27 missing the copyright
3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 android:orientation="vertical"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:background="@drawable/select_popup"
8 android:id="@+id/select_popup_shadow">
9
10 <ListView
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:id="@+id/listView"
14 android:divider="@null"
15 android:background="#F7F7F7"
16 android:listSelector="@drawable/select_popup_item_selector"
17 android:layout_gravity="center_horizontal" />
18 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698