12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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.CreatePlanActivity">
- <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/re1"
- android:layout_below="@+id/tool_bar">
- <include
- android:id="@+id/include_view"
- layout="@layout/scroll_view_item" />
- </ScrollView>
- <RelativeLayout
- android:id="@+id/re1"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_alignParentBottom="true">
- <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" />
- <TextView
- android:id="@+id/tv_commit"
- 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"
- android:visibility="gone" />
- </RelativeLayout>
- </RelativeLayout>
|