activity_visit_sign.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@mipmap/bg_app"
  6. android:orientation="vertical">
  7. <include layout="@layout/title_layout" />
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="match_parent"
  11. android:layout_gravity="center_horizontal"
  12. android:layout_marginLeft="40dp"
  13. android:layout_marginTop="50dp"
  14. android:layout_marginRight="40dp"
  15. android:layout_marginBottom="120dp"
  16. android:orientation="horizontal">
  17. <LinearLayout
  18. android:layout_width="0dp"
  19. android:layout_height="match_parent"
  20. android:layout_weight="1"
  21. android:background="@color/color_efeeee"
  22. android:gravity="center_horizontal"
  23. android:orientation="vertical"
  24. android:paddingTop="30dp"
  25. android:paddingBottom="30dp">
  26. <ImageView
  27. android:layout_width="180dp"
  28. android:layout_height="180dp"
  29. android:src="@mipmap/ic_launcher" />
  30. <TextClock
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_marginTop="15dp"
  34. android:text="fadsgadgadsg"
  35. android:textColor="@color/color_333333"
  36. android:textSize="@dimen/sp_25" />
  37. <TextView
  38. android:id="@+id/tv_date"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_marginTop="15dp"
  42. android:text="2022-8-26"
  43. android:textColor="@color/color_333333"
  44. android:textSize="@dimen/sp_20" />
  45. </LinearLayout>
  46. <FrameLayout
  47. android:layout_width="0dp"
  48. android:layout_height="match_parent"
  49. android:layout_marginLeft="40dp"
  50. android:layout_weight="2"
  51. android:background="@color/color_efeeee"
  52. android:orientation="horizontal"
  53. android:padding="50dp">
  54. <include layout="@layout/fragment_id_card_reg"/>
  55. </FrameLayout>
  56. </LinearLayout>
  57. </LinearLayout>