files_folder_picker.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ownCloud Android client application
  4. Copyright (C) 2015 ownCloud Inc.
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License version 2,
  7. as published by the Free Software Foundation.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. -->
  15. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:orientation="vertical" >
  19. <include
  20. layout="@layout/toolbar_standard" />
  21. <FrameLayout
  22. android:layout_width="match_parent"
  23. android:layout_height="@dimen/zero"
  24. android:layout_weight="1"
  25. android:id="@+id/fragment_container" />
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:orientation="horizontal">
  30. <ImageView
  31. android:layout_width="match_parent"
  32. android:layout_height="1dp"
  33. android:src="@drawable/uploader_list_separator"/>
  34. </LinearLayout>
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:gravity="center"
  39. android:orientation="horizontal"
  40. android:padding="@dimen/standard_padding">
  41. <android.support.v7.widget.AppCompatButton
  42. android:id="@+id/folder_picker_btn_cancel"
  43. android:theme="@style/Button"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:layout_weight="1"
  47. android:text="@string/common_cancel"
  48. android:layout_marginRight="@dimen/standard_half_margin"/>
  49. <android.support.v7.widget.AppCompatButton
  50. android:id="@+id/folder_picker_btn_choose"
  51. android:theme="@style/Button.Primary"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:layout_weight="1"
  55. android:text="@string/folder_picker_choose_button_text" />
  56. </LinearLayout>
  57. </LinearLayout>