item_image2.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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:layout_width="70dp"
  13. android:layout_height="80dp"
  14. android:layout_alignParentBottom="true"
  15. android:layout_centerHorizontal="true"
  16. android:background="@drawable/shape_white_solid_rectangle_2"
  17. android:orientation="vertical">
  18. <RelativeLayout
  19. android:layout_width="wrap_content"
  20. android:layout_height="0dp"
  21. android:layout_gravity="center_horizontal"
  22. android:layout_marginLeft="4dp"
  23. android:layout_marginTop="4dp"
  24. android:layout_marginRight="4dp"
  25. android:layout_weight="1">
  26. <ImageView
  27. android:id="@+id/image_bottom"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_centerInParent="true"
  31. android:src="@drawable/loading_01" />
  32. <ImageView
  33. android:layout_width="10dp"
  34. android:layout_height="10dp"
  35. android:layout_centerInParent="true"
  36. android:src="@mipmap/sheep_logo" />
  37. </RelativeLayout>
  38. <TextView
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:layout_marginTop="1dp"
  42. android:layout_marginBottom="3dp"
  43. android:gravity="center"
  44. android:text="扫我开始赚钱"
  45. android:textColor="#ff999999"
  46. android:textSize="8sp" />
  47. </LinearLayout>
  48. </RelativeLayout>