fragment_manga_info.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. tools:context="eu.kanade.tachiyomi.ui.catalogue.CatalogueFragment">
  9. <android.support.v4.widget.SwipeRefreshLayout
  10. android:id="@id/swipe_refresh"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent">
  13. <LinearLayout
  14. android:id="@+id/global_view"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="vertical">
  18. <RelativeLayout
  19. android:id="@+id/top_view"
  20. android:layout_width="match_parent"
  21. android:layout_height="0dp"
  22. android:layout_weight="0.4">
  23. <ImageView
  24. android:id="@+id/backdrop"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:alpha="0.2"
  28. android:contentDescription="@string/description_backdrop"/>
  29. <LinearLayout
  30. android:layout_width="match_parent"
  31. android:layout_height="match_parent"
  32. android:orientation="horizontal">
  33. <ImageView
  34. android:id="@+id/manga_cover"
  35. android:layout_width="0dp"
  36. android:layout_height="match_parent"
  37. android:layout_margin="@dimen/activity_vertical_margin"
  38. android:layout_weight="0.35"
  39. android:contentDescription="@string/description_cover"/>
  40. <RelativeLayout
  41. android:layout_width="0dp"
  42. android:layout_height="match_parent"
  43. android:layout_margin="@dimen/activity_vertical_margin"
  44. android:layout_weight="0.65">
  45. <android.support.v4.widget.NestedScrollView
  46. android:layout_width="match_parent"
  47. android:layout_height="match_parent">
  48. <RelativeLayout
  49. android:layout_width="match_parent"
  50. android:layout_height="match_parent">
  51. <LinearLayout
  52. android:id="@+id/manga_author_view"
  53. android:layout_width="match_parent"
  54. android:layout_height="wrap_content"
  55. android:orientation="horizontal">
  56. <TextView
  57. android:id="@+id/manga_author_label"
  58. style="@style/manga_detail_label"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="@string/manga_info_author_label"
  62. />
  63. <TextView
  64. android:id="@+id/manga_author"
  65. style="@style/manga_detail_text"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. />
  69. </LinearLayout>
  70. <LinearLayout
  71. android:id="@+id/manga_artist_view"
  72. android:layout_width="match_parent"
  73. android:layout_height="wrap_content"
  74. android:layout_below="@+id/manga_author_view"
  75. android:orientation="horizontal">
  76. <TextView
  77. android:id="@+id/manga_artist_label"
  78. style="@style/manga_detail_label"
  79. android:layout_width="wrap_content"
  80. android:layout_height="wrap_content"
  81. android:text="@string/manga_info_artist_label"
  82. />
  83. <TextView
  84. android:id="@+id/manga_artist"
  85. style="@style/manga_detail_text"
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"
  88. />
  89. </LinearLayout>
  90. <LinearLayout
  91. android:id="@+id/manga_chapters_view"
  92. android:layout_width="match_parent"
  93. android:layout_height="wrap_content"
  94. android:layout_below="@+id/manga_artist_view"
  95. android:orientation="horizontal">
  96. <TextView
  97. android:id="@+id/manga_chapters_label"
  98. style="@style/manga_detail_label"
  99. android:layout_width="wrap_content"
  100. android:layout_height="wrap_content"
  101. android:text="@string/manga_info_chapters_label"
  102. />
  103. <TextView
  104. android:id="@+id/manga_chapters"
  105. style="@style/manga_detail_text"
  106. android:layout_width="wrap_content"
  107. android:layout_height="wrap_content"
  108. />
  109. </LinearLayout>
  110. <LinearLayout
  111. android:id="@+id/manga_status_view"
  112. android:layout_width="match_parent"
  113. android:layout_height="wrap_content"
  114. android:layout_below="@+id/manga_chapters_view"
  115. android:orientation="horizontal">
  116. <TextView
  117. android:id="@+id/manga_status_label"
  118. style="@style/manga_detail_label"
  119. android:layout_width="wrap_content"
  120. android:layout_height="wrap_content"
  121. android:text="@string/manga_info_status_label"
  122. />
  123. <TextView
  124. android:id="@+id/manga_status"
  125. style="@style/manga_detail_text"
  126. android:layout_width="wrap_content"
  127. android:layout_height="wrap_content"
  128. />
  129. </LinearLayout>
  130. <LinearLayout
  131. android:id="@+id/manga_source_view"
  132. android:layout_width="match_parent"
  133. android:layout_height="wrap_content"
  134. android:layout_below="@+id/manga_status_view"
  135. android:orientation="horizontal">
  136. <TextView
  137. android:id="@+id/manga_source_label"
  138. style="@style/manga_detail_label"
  139. android:layout_width="wrap_content"
  140. android:layout_height="wrap_content"
  141. android:text="@string/manga_info_source_label"
  142. />
  143. <TextView
  144. android:id="@+id/manga_source"
  145. style="@style/manga_detail_text"
  146. android:layout_width="wrap_content"
  147. android:layout_height="wrap_content"
  148. />
  149. </LinearLayout>
  150. <LinearLayout
  151. android:id="@+id/manga_genres_view"
  152. android:layout_width="match_parent"
  153. android:layout_height="wrap_content"
  154. android:layout_below="@+id/manga_source_view"
  155. android:orientation="vertical">
  156. <TextView
  157. android:id="@+id/manga_genres_label"
  158. style="@style/manga_detail_label"
  159. android:layout_width="wrap_content"
  160. android:layout_height="wrap_content"
  161. android:text="@string/manga_info_genres_label"
  162. />
  163. <TextView
  164. android:id="@+id/manga_genres"
  165. style="@style/manga_detail_text"
  166. android:layout_width="wrap_content"
  167. android:layout_height="wrap_content"
  168. android:singleLine="false"
  169. />
  170. </LinearLayout>
  171. </RelativeLayout>
  172. </android.support.v4.widget.NestedScrollView>
  173. </RelativeLayout>
  174. </LinearLayout>
  175. </RelativeLayout>
  176. <android.support.v4.widget.NestedScrollView
  177. android:id="@+id/bottom_view"
  178. android:layout_width="match_parent"
  179. android:layout_height="0dp"
  180. android:layout_margin="@dimen/activity_vertical_margin"
  181. android:layout_weight="0.6">
  182. <LinearLayout
  183. android:layout_width="match_parent"
  184. android:layout_height="wrap_content"
  185. android:orientation="vertical">
  186. <TextView
  187. android:id="@+id/manga_summary_label"
  188. style="@style/manga_detail_label"
  189. android:layout_width="match_parent"
  190. android:layout_height="wrap_content"
  191. android:text="@string/description"/>
  192. <TextView
  193. android:id="@+id/manga_summary"
  194. style="@style/manga_detail_text"
  195. android:layout_width="match_parent"
  196. android:layout_height="wrap_content"
  197. android:singleLine="false"
  198. />
  199. </LinearLayout>
  200. </android.support.v4.widget.NestedScrollView>
  201. </LinearLayout>
  202. </android.support.v4.widget.SwipeRefreshLayout>
  203. <android.support.design.widget.FloatingActionButton
  204. android:id="@+id/fab_favorite"
  205. android:layout_width="@dimen/fab_size"
  206. android:layout_height="@dimen/fab_size"
  207. android:layout_margin="@dimen/fab_margin"
  208. android:src="@drawable/ic_bookmark_border_white_24dp"
  209. app:backgroundTint="@color/colorPrimary"
  210. app:layout_anchor="@id/top_view"
  211. app:layout_anchorGravity="bottom|right|end"/>
  212. </android.support.design.widget.CoordinatorLayout>