Blame view

res/layout/listview_loding.xml 1.29 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
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
  <?xml version="1.0" encoding="utf-8"?>
  <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="#eeeeee" >
  
      <RelativeLayout
          android:id="@+id/footLayout"
          android:layout_width="match_parent"
          android:layout_height="wrap_content" >
  
          <TextView
              android:id="@+id/load_text"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_centerInParent="true"
              android:layout_marginLeft="10.0dp"
              android:gravity="center"
              android:paddingBottom="15dp"
              android:paddingTop="15dp"
              android:text="加载更多"
              android:textColor="#666666" >
          </TextView>
  
          <ProgressBar
              android:id="@+id/load_progress"
              style="@android:style/Widget.ProgressBar.Small.Inverse"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_centerVertical="true"
              android:layout_gravity="center"
              android:layout_toLeftOf="@id/load_text"
              android:indeterminate="true" >
          </ProgressBar>
      </RelativeLayout>
  </FrameLayout>