activity_business_circle.xml 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. <com.xzjmyk.pm.activity.view.ResizeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:id="@+id/resize_layout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/white"
  7. android:orientation="vertical" >
  8. <com.handmark.pulltorefresh.library.PullToRefreshListView
  9. xmlns:ptr="http://schemas.android.com/apk/res-auto"
  10. android:id="@+id/pull_refresh_list"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_above="@+id/bottom_view"
  14. ptr:ptrAnimationStyle="flip"
  15. ptr:ptrDrawableEnd="@drawable/default_ptr_rotate"
  16. ptr:ptrDrawableStart="@drawable/default_ptr_flip"
  17. ptr:ptrHeaderTextColor="@color/black"
  18. ptr:ptrMode="both"
  19. ptr:ptrOverScroll="false"
  20. ptr:ptrScrollingWhileRefreshingEnabled="true"
  21. ptr:ptrShowIndicator="false" />
  22. <com.xzjmyk.pm.activity.view.PMsgBottomView
  23. android:id="@+id/bottom_view"
  24. android:visibility="gone"
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_alignParentBottom="true" />
  28. </com.xzjmyk.pm.activity.view.ResizeLayout>