layout_user_room.xml 776 B

1234567891011121314151617181920212223
  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. <FrameLayout
  6. android:id="@+id/flRoot"
  7. android:layout_width="match_parent"
  8. android:layout_height="match_parent"/>
  9. <androidx.viewpager.widget.ViewPager
  10. android:id="@+id/viewPager"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"/>
  13. <ImageView
  14. android:id="@+id/ivCover"
  15. android:scaleType="centerCrop"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"/>
  18. </androidx.constraintlayout.widget.ConstraintLayout>