92 lines
3.3 KiB
XML
92 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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/color_f5f5f5"
|
|
android:orientation="vertical">
|
|
|
|
<com.tairui.industrial_operation.widget.statusbar.StatusBarHeightView
|
|
android:id="@+id/statusbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
app:contentInsetLeft="0dp"
|
|
app:contentInsetStart="0dp"
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
app:layout_collapseMode="pin">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/btnBack"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="left|center_vertical"
|
|
android:padding="5dp"
|
|
android:src="@mipmap/ic_back_black" />
|
|
|
|
<TextView
|
|
android:id="@+id/toolbar_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:text="保险申请"
|
|
android:textColor="@color/color_txt_black"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
</FrameLayout>
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scrollbars="none">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/img1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:src="@mipmap/pic_baoxianshenqing"
|
|
app:layout_constraintDimensionRatio="358:712"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<View
|
|
android:id="@+id/viewNext"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="62dp"
|
|
app:layout_constraintBottom_toBottomOf="@id/img1" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
</LinearLayout> |