common_fragment_img_sel.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <FrameLayout
  2. xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <RelativeLayout
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent">
  8. <androidx.recyclerview.widget.RecyclerView
  9. android:id="@+id/rvImageList"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:layout_marginBottom="?android:attr/actionBarSize"/>
  13. <RelativeLayout
  14. android:id="@+id/rlBottom"
  15. android:layout_width="match_parent"
  16. android:layout_height="?android:attr/actionBarSize"
  17. android:layout_alignParentBottom="true"
  18. android:background="@color/bottom_bg"
  19. android:clickable="true">
  20. <Button
  21. android:id="@+id/btnAlbumSelected"
  22. android:layout_width="wrap_content"
  23. android:layout_height="match_parent"
  24. android:layout_centerVertical="true"
  25. android:background="@null"
  26. android:drawablePadding="5dp"
  27. android:drawableRight="@drawable/ic_album"
  28. android:ellipsize="end"
  29. android:gravity="center_vertical"
  30. android:paddingLeft="16dp"
  31. android:paddingRight="16dp"
  32. android:singleLine="true"
  33. android:textAllCaps="false"
  34. android:textColor="@android:color/white"
  35. android:textSize="16sp"/>
  36. <Button
  37. android:id="@+id/btn_certain"
  38. android:layout_width="wrap_content"
  39. android:layout_height="match_parent"
  40. android:layout_alignParentRight="true"
  41. android:layout_centerVertical="true"
  42. android:layout_marginBottom="5dp"
  43. android:layout_marginRight="16dp"
  44. android:layout_marginTop="5dp"
  45. android:background="@drawable/bg_button_green"
  46. android:paddingLeft="16dp"
  47. android:paddingRight="16dp"
  48. android:singleLine="true"
  49. android:text="添加 (3)"
  50. android:textAllCaps="false"
  51. android:textColor="@android:color/white"
  52. android:textSize="15sp"
  53. android:visibility="gone"/>
  54. </RelativeLayout>
  55. </RelativeLayout>
  56. <com.yuyh.library.imgsel.widget.CustomViewPager
  57. android:id="@+id/viewPager"
  58. android:layout_width="match_parent"
  59. android:layout_height="match_parent"
  60. android:background="@android:color/black"
  61. android:visibility="gone"/>
  62. </FrameLayout>