item_image2.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:visibility="gone"
  18. android:background="@drawable/shape_white_solid_rectangle_5"
  19. android:orientation="vertical">
  20. <View
  21. android:id="@+id/image_bottom_top"
  22. android:layout_width="match_parent"
  23. android:layout_height="1dp"/>
  24. <RelativeLayout
  25. android:layout_width="wrap_content"
  26. android:layout_height="0dp"
  27. android:layout_gravity="center_horizontal"
  28. android:layout_weight="1">
  29. <ImageView
  30. android:id="@+id/image_bottom"
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:layout_centerInParent="true"
  34. android:src="@drawable/loading_01" />
  35. <ImageView
  36. android:id="@+id/image_logo"
  37. android:layout_width="10dp"
  38. android:layout_height="10dp"
  39. android:layout_centerInParent="true"
  40. android:src="@mipmap/sheep_logo" />
  41. </RelativeLayout>
  42. <TextView
  43. android:id="@+id/image_tip"
  44. android:layout_width="match_parent"
  45. android:layout_height="wrap_content"
  46. android:gravity="top|center"
  47. android:text="扫我开始赚钱"
  48. android:textColor="#ff999999"
  49. android:textSize="8sp" />
  50. </LinearLayout>
  51. </RelativeLayout>