reader_page_sheet.xml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. android:background="?android:colorBackground"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:orientation="vertical">
  9. <LinearLayout
  10. android:id="@+id/set_as_cover_layout"
  11. android:layout_width="match_parent"
  12. android:layout_height="56dp"
  13. android:paddingStart="16dp"
  14. android:paddingEnd="16dp"
  15. android:gravity="center"
  16. android:clickable="true"
  17. android:focusable="true"
  18. android:foreground="?attr/selectableItemBackground">
  19. <ImageView
  20. android:layout_width="24dp"
  21. android:layout_height="24dp"
  22. android:tint="@color/md_white_1000_54"
  23. app:srcCompat="@drawable/ic_image_black_24dp" />
  24. <TextView
  25. android:layout_width="match_parent"
  26. android:layout_height="wrap_content"
  27. android:layout_marginStart="32dp"
  28. android:text="@string/set_as_cover"/>
  29. </LinearLayout>
  30. <LinearLayout
  31. android:id="@+id/share_layout"
  32. android:layout_width="match_parent"
  33. android:layout_height="56dp"
  34. android:paddingStart="16dp"
  35. android:paddingEnd="16dp"
  36. android:gravity="center"
  37. android:clickable="true"
  38. android:focusable="true"
  39. android:foreground="?attr/selectableItemBackground">
  40. <ImageView
  41. android:layout_width="24dp"
  42. android:layout_height="24dp"
  43. android:tint="@color/md_white_1000_54"
  44. app:srcCompat="@drawable/ic_share_black_24dp" />
  45. <TextView
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_marginStart="32dp"
  49. android:text="@string/action_share"/>
  50. </LinearLayout>
  51. <LinearLayout
  52. android:id="@+id/save_layout"
  53. android:layout_width="match_parent"
  54. android:layout_height="56dp"
  55. android:paddingStart="16dp"
  56. android:paddingEnd="16dp"
  57. android:gravity="center"
  58. android:clickable="true"
  59. android:focusable="true"
  60. android:foreground="?attr/selectableItemBackground">
  61. <ImageView
  62. android:layout_width="24dp"
  63. android:layout_height="24dp"
  64. android:tint="@color/md_white_1000_54"
  65. app:srcCompat="@drawable/ic_file_download_black_24dp" />
  66. <TextView
  67. android:layout_width="match_parent"
  68. android:layout_height="wrap_content"
  69. android:layout_marginStart="32dp"
  70. android:text="@string/action_save"/>
  71. </LinearLayout>
  72. </LinearLayout>