123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/purple_f5"
- tools:context="com.zhong.inspection.ui.CheckAllActivity">
- <include
- android:id="@+id/tool_bar"
- layout="@layout/title_toolbar" />
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_above="@+id/tv_next"
- android:layout_below="@+id/tool_bar"
- android:layout_marginBottom="10dp">
- <include
- android:id="@+id/include_view"
- layout="@layout/check_all_scroll_view" />
- </ScrollView>
- <TextView
- android:id="@+id/tv_next"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_alignParentBottom="true"
- android:background="@color/purple_fa"
- android:gravity="center"
- android:text="下一步"
- android:textColor="@color/white" />
- </RelativeLayout>
|