dialog_plan.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:ignore="PxUsage">
  7. <LinearLayout
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_centerInParent="true"
  11. android:orientation="horizontal">
  12. <RelativeLayout
  13. android:id="@+id/alreadyRL"
  14. android:layout_width="360px"
  15. android:layout_height="450px"
  16. android:layout_marginEnd="48px"
  17. android:background="@mipmap/img_bg_whpcc">
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_alignParentBottom="true"
  22. android:layout_centerHorizontal="true"
  23. android:layout_marginBottom="62px"
  24. android:text="已申领危化品存储"
  25. android:textColor="@color/white"
  26. android:textSize="36px" />
  27. </RelativeLayout>
  28. <RelativeLayout
  29. android:id="@+id/otherRL"
  30. android:layout_width="360px"
  31. android:layout_height="450px"
  32. android:layout_marginStart="48px"
  33. android:background="@mipmap/img_bg_qthxpcc">
  34. <TextView
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:layout_alignParentBottom="true"
  38. android:layout_centerHorizontal="true"
  39. android:layout_marginBottom="62px"
  40. android:text="其它化学品存储"
  41. android:textColor="@color/white"
  42. android:textSize="36px" />
  43. </RelativeLayout>
  44. </LinearLayout>
  45. </RelativeLayout>