<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout 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">
|
|
|
<ImageView
|
android:id="@+id/imageView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:srcCompat="@android:drawable/ic_delete"
|
android:layout_marginLeft="@dimen/frame_margin_lr"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintBottom_toBottomOf="@id/txt_employer"/>
|
|
<TextView
|
android:id="@+id/txt_employer"
|
android:layout_width="wrap_content"
|
android:layout_height="50dp"
|
android:gravity="center"
|
android:text="发单会员"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toLeftOf="@id/txt_employee"/>
|
|
<TextView
|
android:id="@+id/txt_employee"
|
android:layout_width="wrap_content"
|
android:layout_height="50dp"
|
android:gravity="center"
|
android:text="接单会员"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toRightOf="@id/txt_employer"
|
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
<include layout="@layout/fragment_employer_vip"
|
android:id="@+id/nav_host_fragment_activity_main"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:defaultNavHost="true"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toBottomOf="@id/txt_employer"
|
/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|