dropdown_lv_head.xml
1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<!-- ListView的头部 -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<View
android:id="@+id/line"
android:layout_width="0.2dip"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:background="#D2D2D2" />
<LinearLayout
android:id="@+id/drop_down_head"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="center_horizontal"
android:orientation="vertical" >
<View
android:layout_width="0.2dip"
android:layout_height="20dip"
android:layout_gravity="center_horizontal"
android:background="#D2D2D2" />
<ProgressBar
android:id="@+id/loading"
android:layout_width="20dip"
android:layout_height="20dip"
android:background="@drawable/circle_shape"
android:indeterminateDrawable="@drawable/loading" />
</LinearLayout>
</FrameLayout>