fragment_layout_gallery.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <com.ivalentin.margolariak.CustomScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content"
  6. android:id="@+id/scrollView3"
  7. android:background="@color/background_app"
  8. android:padding="7dp">
  9. <LinearLayout
  10. android:orientation="vertical"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:paddingBottom="20dp">
  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. <LinearLayout
  51. android:orientation="vertical"
  52. android:layout_width="match_parent"
  53. android:layout_height="match_parent"
  54. android:background="@drawable/section"
  55. android:padding="7dp"
  56. android:layout_marginTop="20dp">
  57. <TextView
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:textAppearance="?android:attr/textAppearanceLarge"
  61. android:text="@string/gallery_albums" />
  62. <LinearLayout
  63. android:orientation="vertical"
  64. android:layout_width="match_parent"
  65. android:layout_height="match_parent"
  66. android:layout_marginBottom="10dp"
  67. android:id="@+id/ll_gallery_album_list"/>
  68. </LinearLayout>
  69. </LinearLayout>
  70. </com.ivalentin.margolariak.CustomScrollView>