| 12345678910111213141516171819202122232425262728293031 |
- <com.xzjmyk.pm.activity.view.ResizeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:id="@+id/resize_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white"
- android:orientation="vertical" >
- <com.handmark.pulltorefresh.library.PullToRefreshListView
- xmlns:ptr="http://schemas.android.com/apk/res-auto"
- android:id="@+id/pull_refresh_list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/bottom_view"
- ptr:ptrAnimationStyle="flip"
- ptr:ptrDrawableEnd="@drawable/default_ptr_rotate"
- ptr:ptrDrawableStart="@drawable/default_ptr_flip"
- ptr:ptrHeaderTextColor="@color/black"
- ptr:ptrMode="both"
- ptr:ptrOverScroll="false"
- ptr:ptrScrollingWhileRefreshingEnabled="true"
- ptr:ptrShowIndicator="false" />
- <com.xzjmyk.pm.activity.view.PMsgBottomView
- android:id="@+id/bottom_view"
- android:visibility="gone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" />
- </com.xzjmyk.pm.activity.view.ResizeLayout>
|