1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:tools="http://schemas.android.com/tools"
- tools:viewBindingIgnore="true"
- android:id="@+id/rootUserView"
- xmlns:app="http://schemas.android.com/apk/res-auto">
- <FrameLayout
- android:id="@+id/flRoot"
- android:layoutDirection="ltr"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <FrameLayout
- android:id="@+id/peerFl"
- android:layoutDirection="ltr"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- </FrameLayout>
- <com.duolingo.open.rtlviewpager.RtlViewPager
- android:id="@+id/viewPager"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <ImageView
- android:id="@+id/ivCover"
- android:scaleType="centerCrop"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- <ImageView
- android:id="@+id/ivClose"
- android:layout_marginEnd="10dp"
- android:layout_marginTop="35dp"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- android:src="@mipmap/close"
- android:layout_width="40dp"
- android:layout_height="40dp"/>
- <com.swago.room.widget.UserShowAnchorCloseView
- android:id="@+id/userShowAnchorCloseView"
- android:visibility="invisible"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintBottom_toBottomOf="parent"
- android:layout_width="0dp"
- android:layout_height="0dp"/>
- </androidx.constraintlayout.widget.ConstraintLayout>
|