activity_check_all.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/purple_f5"
  8. tools:context="com.zhong.inspection.ui.CheckAllActivity">
  9. <include
  10. android:id="@+id/tool_bar"
  11. layout="@layout/title_toolbar" />
  12. <ScrollView
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:layout_above="@+id/tv_next"
  16. android:layout_below="@+id/tool_bar"
  17. android:layout_marginBottom="10dp">
  18. <include
  19. android:id="@+id/include_view"
  20. layout="@layout/check_all_scroll_view" />
  21. </ScrollView>
  22. <TextView
  23. android:id="@+id/tv_next"
  24. android:layout_width="match_parent"
  25. android:layout_height="45dp"
  26. android:layout_alignParentBottom="true"
  27. android:background="@color/purple_fa"
  28. android:gravity="center"
  29. android:text="下一步"
  30. android:textColor="@color/white" />
  31. </RelativeLayout>