| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/head_view"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/transparent" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:paddingBottom="20dp"
- android:paddingTop="20dp" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true" >
- <ImageView
- android:id="@+id/pull_icon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="60dp"
- android:background="@drawable/pull_icon_big" />
- <ImageView
- android:id="@+id/refreshing_icon"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="60dp"
- android:background="@drawable/list_load_refresh"
- android:visibility="gone" />
- <TextView
- android:id="@+id/state_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="@string/pull_to_refresh"
- android:textColor="@color/text_search"
- android:textSize="16sp" />
- <ImageView
- android:id="@+id/state_iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginRight="8dp"
- android:layout_toLeftOf="@id/state_tv"
- android:visibility="gone" />
- </RelativeLayout>
- </RelativeLayout>
- </RelativeLayout>
|