layout_user_room.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. tools:viewBindingIgnore="true"
  7. android:id="@+id/rootUserView"
  8. xmlns:app="http://schemas.android.com/apk/res-auto">
  9. <FrameLayout
  10. android:id="@+id/flRoot"
  11. android:layoutDirection="ltr"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"/>
  14. <FrameLayout
  15. android:id="@+id/peerFl"
  16. android:layoutDirection="ltr"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent">
  19. </FrameLayout>
  20. <com.duolingo.open.rtlviewpager.RtlViewPager
  21. android:id="@+id/viewPager"
  22. android:layout_width="match_parent"
  23. android:layout_height="match_parent"/>
  24. <ImageView
  25. android:id="@+id/ivCover"
  26. android:scaleType="centerCrop"
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"/>
  29. <ImageView
  30. android:id="@+id/ivClose"
  31. android:layout_marginEnd="10dp"
  32. android:layout_marginTop="35dp"
  33. app:layout_constraintTop_toTopOf="parent"
  34. app:layout_constraintEnd_toEndOf="parent"
  35. android:src="@mipmap/close"
  36. android:layout_width="40dp"
  37. android:layout_height="40dp"/>
  38. <com.swago.room.widget.UserShowAnchorCloseView
  39. android:id="@+id/userShowAnchorCloseView"
  40. android:visibility="invisible"
  41. app:layout_constraintStart_toStartOf="parent"
  42. app:layout_constraintEnd_toEndOf="parent"
  43. app:layout_constraintTop_toTopOf="parent"
  44. app:layout_constraintBottom_toBottomOf="parent"
  45. android:layout_width="0dp"
  46. android:layout_height="0dp"/>
  47. </androidx.constraintlayout.widget.ConstraintLayout>