item_image2.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/layout_view"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content">
  6. <ImageView
  7. android:id="@+id/image_full"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layout_centerHorizontal="true" />
  11. <LinearLayout
  12. android:id="@+id/image_container"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:layout_alignParentBottom="true"
  16. android:layout_centerHorizontal="true"
  17. android:background="@drawable/shape_white_solid_rectangle_5"
  18. android:orientation="vertical">
  19. <View
  20. android:id="@+id/image_bottom_top"
  21. android:layout_width="match_parent"
  22. android:layout_height="1dp"/>
  23. <RelativeLayout
  24. android:layout_width="wrap_content"
  25. android:layout_height="0dp"
  26. android:layout_gravity="center_horizontal"
  27. android:layout_weight="1">
  28. <ImageView
  29. android:id="@+id/image_bottom"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_centerInParent="true"
  33. android:src="@drawable/loading_01" />
  34. <ImageView
  35. android:id="@+id/image_logo"
  36. android:layout_width="10dp"
  37. android:layout_height="10dp"
  38. android:layout_centerInParent="true"
  39. android:src="@mipmap/sheep_logo" />
  40. </RelativeLayout>
  41. <TextView
  42. android:id="@+id/image_tip"
  43. android:layout_width="match_parent"
  44. android:layout_height="wrap_content"
  45. android:gravity="top|center"
  46. android:text="扫我开始赚钱"
  47. android:textColor="#ff999999"
  48. android:textSize="8sp" />
  49. </LinearLayout>
  50. </RelativeLayout>