fragment_layout_album.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <com.ivalentin.margolariak.CustomScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="fill_parent"
  6. android:layout_height="wrap_content"
  7. >
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical">
  12. <TextView
  13. android:layout_width="match_parent"
  14. android:layout_height="wrap_content"
  15. android:id="@+id/tv_album_title"
  16. android:textAppearance="?android:attr/textAppearanceLarge"
  17. android:textStyle="bold"
  18. tools:layout_width="match_parent"
  19. android:background="@drawable/section_title"
  20. android:paddingBottom="4dp"
  21. android:paddingEnd="10dp"
  22. android:paddingStart="20dp"
  23. android:paddingTop="4dp"
  24. android:textColor="@color/section_title"
  25. android:layout_marginBottom="-1.3dp"
  26. android:layout_marginEnd="10dp"
  27. android:layout_marginLeft="10dp"
  28. android:layout_marginRight="10dp"
  29. android:layout_marginStart="10dp"
  30. android:layout_marginTop="10dp"/>
  31. <LinearLayout
  32. android:orientation="vertical"
  33. android:layout_width="match_parent"
  34. android:layout_height="match_parent"
  35. android:background="@drawable/section_large"
  36. android:layout_marginBottom="10dp"
  37. android:layout_marginEnd="10dp"
  38. android:layout_marginLeft="10dp"
  39. android:layout_marginRight="10dp"
  40. android:layout_marginStart="10dp"
  41. android:layout_marginTop="0dp">
  42. <LinearLayout
  43. android:orientation="vertical"
  44. android:layout_width="match_parent"
  45. android:layout_height="match_parent"
  46. android:background="@drawable/entry"
  47. android:padding="7dp"
  48. android:layout_margin="8dp">
  49. <WebView
  50. android:layout_width="match_parent"
  51. android:layout_height="match_parent"
  52. android:id="@+id/wv_album_description"/>
  53. </LinearLayout>
  54. <LinearLayout
  55. android:orientation="vertical"
  56. android:layout_width="match_parent"
  57. android:layout_height="match_parent"
  58. android:layout_marginLeft="7dp"
  59. android:layout_marginTop="15dp"
  60. android:layout_marginRight="7dp"
  61. android:layout_marginBottom="7dp"
  62. android:id="@+id/ll_album_list">
  63. </LinearLayout>
  64. </LinearLayout>
  65. </LinearLayout>
  66. </com.ivalentin.margolariak.CustomScrollView>