bssdk_listview_footer.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:id="@+id/footer_layout"
  8. android:layout_width="match_parent"
  9. android:layout_height="wrap_content"
  10. android:layout_marginBottom="10dp"
  11. android:layout_marginTop="10dp"
  12. android:gravity="center"
  13. android:orientation="horizontal">
  14. <ProgressBar
  15. android:id="@+id/pb_footer"
  16. style="?android:attr/progressBarStyleSmall"
  17. android:indeterminateDrawable="@drawable/bssdk_dialog_loading_bg"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"/>
  20. <TextView
  21. android:id="@+id/tv_footer"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="正在加载,请稍等。。。"
  25. android:textColor="@color/white"/>
  26. </LinearLayout>
  27. </LinearLayout>