popupwindow_myorder.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <FrameLayout
  8. android:id="@+id/background"
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:background="#70C1FF"
  12. app:layout_constraintBottom_toBottomOf="parent"
  13. app:layout_constraintEnd_toEndOf="parent"
  14. app:layout_constraintStart_toStartOf="parent"
  15. app:layout_constraintTop_toTopOf="parent"></FrameLayout>
  16. <FrameLayout
  17. android:layout_width="1280dp"
  18. android:layout_height="720dp"
  19. android:gravity="center"
  20. android:orientation="vertical"
  21. app:layout_constraintBottom_toBottomOf="parent"
  22. app:layout_constraintDimensionRatio="h,16:9"
  23. app:layout_constraintEnd_toEndOf="parent"
  24. app:layout_constraintStart_toStartOf="parent"
  25. app:layout_constraintTop_toTopOf="parent">
  26. <androidx.recyclerview.widget.RecyclerView
  27. android:id="@+id/popupwindow_myorder_recyclerview"
  28. android:layout_width="952dp"
  29. android:layout_height="match_parent"
  30. android:layout_gravity="center">
  31. </androidx.recyclerview.widget.RecyclerView>
  32. <ImageView
  33. android:id="@+id/popupwindow_myorder_noitem"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:layout_gravity="center"
  37. android:src="@drawable/popupwinow_myorder_noitem"
  38. android:visibility="gone"></ImageView>
  39. <ImageView
  40. android:id="@+id/popupwindow_myorder_back"
  41. android:layout_width="77dp"
  42. android:layout_height="77dp"
  43. android:layout_marginLeft="32dp"
  44. android:layout_marginTop="20dp"
  45. android:src="@drawable/main_back"></ImageView>
  46. </FrameLayout>
  47. </androidx.constraintlayout.widget.ConstraintLayout>