fragment_layout_gallery.xml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. android:id="@+id/scrollView3"
  8. tools:ignore="Overdraw">
  9. <LinearLayout
  10. android:orientation="vertical"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. >
  14. <LinearLayout
  15. android:orientation="vertical"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:background="@drawable/section"
  19. android:padding="7dp"
  20. android:visibility="gone">
  21. <TextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:textAppearance="?android:attr/textAppearanceLarge"
  25. android:text="@string/gallery_upload" />
  26. <LinearLayout
  27. android:orientation="vertical"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:layout_margin="7dp"
  31. android:background="@drawable/entry">
  32. <TextView
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:textAppearance="?android:attr/textAppearanceMedium"
  36. android:text="@string/gallery_upload_text"
  37. android:layout_margin="7dp" />
  38. <Button
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:text="@string/gallery_upload_button"
  42. android:id="@+id/bt_gallery_upload"
  43. android:background="@drawable/button_selector"
  44. android:textColor="@color/input_button_color"
  45. android:textStyle="bold"
  46. android:layout_gravity="center_horizontal"
  47. android:layout_marginBottom="12dp" />
  48. </LinearLayout>
  49. </LinearLayout>
  50. <TextView
  51. android:layout_width="match_parent"
  52. android:layout_height="wrap_content"
  53. android:text="@string/gallery_albums"
  54. android:textAppearance="?android:attr/textAppearanceLarge"
  55. android:textStyle="bold"
  56. tools:layout_width="match_parent"
  57. android:background="@drawable/section_title"
  58. android:paddingBottom="4dp"
  59. android:paddingEnd="10dp"
  60. android:paddingStart="20dp"
  61. android:paddingTop="4dp"
  62. android:textColor="@color/section_title"
  63. android:layout_marginTop="10dp"
  64. android:layout_marginLeft="10dp"
  65. android:layout_marginRight="10dp"
  66. android:layout_marginStart="10dp"
  67. android:layout_marginEnd="10dp"
  68. android:layout_marginBottom="-1.5dp"/>
  69. <LinearLayout
  70. android:orientation="vertical"
  71. android:layout_width="match_parent"
  72. android:layout_height="match_parent"
  73. android:id="@+id/ll_gallery_album_list"
  74. android:layout_marginBottom="10dp"
  75. android:layout_marginEnd="10dp"
  76. android:layout_marginLeft="10dp"
  77. android:layout_marginRight="10dp"
  78. android:layout_marginStart="10dp"
  79. android:layout_marginTop="0dp"
  80. android:background="@drawable/section_large"/>
  81. </LinearLayout>
  82. </com.ivalentin.margolariak.CustomScrollView>