| <?xml version="1.0" encoding="utf-8"?> | 
| <layout> | 
|     <data> | 
|         <import type="com.doumee.lib_coremodel.base.BaseViewModel"/> | 
|         <import type="android.view.View"/> | 
|         <variable | 
|             name="model" | 
|             type="com.doumee.keyCabinet.ui.guide.GuideViewModel" /> | 
|     </data> | 
|     <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" | 
|         tools:context=".ui.guide.GuideActivity" | 
|         android:background="@mipmap/bg_home" | 
|         > | 
|   | 
|         <TextView | 
|             android:id="@+id/tv_dvcode" | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:textColor="@color/white" | 
|             app:layout_constraintStart_toStartOf="parent" | 
|             app:layout_constraintBottom_toBottomOf="parent" | 
|             android:textSize="16sp"/> | 
|   | 
|         <androidx.constraintlayout.widget.ConstraintLayout | 
|             android:id="@+id/cl_jy" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="match_parent" | 
|             android:visibility="@{model.jyVisibility}"> | 
|   | 
|             <View | 
|                 android:id="@+id/v_bg1" | 
|                 android:layout_width="match_parent" | 
|                 android:layout_height="match_parent" | 
|                 android:background="#ffc4c4c4"/> | 
|   | 
|             <View | 
|                 android:id="@+id/v_bg2" | 
|                 android:layout_width="match_parent" | 
|                 android:layout_height="match_parent" | 
|                 android:background="@drawable/shape_r30_white_bg" | 
|                 android:layout_marginTop="25dp" | 
|                 android:layout_marginBottom="25dp" | 
|                 android:layout_marginLeft="35dp" | 
|                 android:layout_marginRight="35dp"/> | 
|   | 
|             <TextView | 
|                 android:id="@+id/tv1" | 
|                 android:layout_width="wrap_content" | 
|                 android:layout_height="wrap_content" | 
|                 android:text="@string/sbyjy" | 
|                 android:textColor="#ff222222" | 
|                 android:textSize="43sp" | 
|                 app:layout_constraintBottom_toTopOf="@+id/cl_sim" | 
|                 app:layout_constraintStart_toStartOf="parent" | 
|                 app:layout_constraintEnd_toEndOf="parent" | 
|                 android:layout_marginBottom="60dp"/> | 
|   | 
|             <androidx.constraintlayout.widget.ConstraintLayout | 
|                 android:id="@+id/cl_sim" | 
|                 android:layout_width="match_parent" | 
|                 android:layout_height="wrap_content" | 
|                 app:layout_constraintTop_toTopOf="parent" | 
|                 app:layout_constraintBottom_toBottomOf="parent"> | 
|   | 
|                 <com.facebook.drawee.view.SimpleDraweeView | 
|                     android:id="@+id/sim_bg" | 
|                     android:layout_width="match_parent" | 
|                     android:layout_height="0dp" | 
|                     app:viewAspectRatio="1.59" | 
|                     app:layout_constraintTop_toTopOf="parent" | 
|                     android:layout_marginLeft="35dp" | 
|                     android:layout_marginRight="35dp" | 
|                     android:background="@mipmap/img_saoma_jinyong"/> | 
|             </androidx.constraintlayout.widget.ConstraintLayout> | 
|   | 
|   | 
|   | 
|         </androidx.constraintlayout.widget.ConstraintLayout> | 
|   | 
|         <com.facebook.drawee.view.SimpleDraweeView | 
|             android:id="@+id/sim" | 
|             android:layout_width="match_parent" | 
|             android:layout_height="match_parent" | 
|             android:visibility="gone"/> | 
|   | 
|   | 
|     </androidx.constraintlayout.widget.ConstraintLayout> | 
| </layout> |