OLD | NEW |
---|---|
(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> | |
OLD | NEW |