1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="10dp"
- android:layout_alignParentTop="true"
- android:paddingTop="10dp" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true" >
- <ImageView
- android:id="@+id/tysdkn_pullup_icon"
- android:layout_width="15dp"
- android:layout_height="30dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="70dp"
- android:background="@drawable/tysdkn_pullup_icon_big" />
- <ImageView
- android:id="@+id/tysdkn_loading_icon"
- android:layout_width="20dp"
- android:layout_height="20dp"
- android:layout_centerVertical="true"
- android:layout_marginLeft="70dp"
- android:background="@drawable/tysdkn_loading"
- android:visibility="gone" />
- <TextView
- android:id="@+id/tysdkn_loadstate_tv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="上拉加载更多"
- android:textColor="#999999"
- android:textSize="12sp" />
- <ImageView
- android:id="@+id/tysdkn_loadstate_iv"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginRight="8dp"
- android:layout_toLeftOf="@id/tysdkn_loadstate_tv"
- android:visibility="gone" />
- </RelativeLayout>
- </RelativeLayout>
- </RelativeLayout>
|