upload_files_picker.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Nextcloud Android client application
  4. Copyright (C) 2016 Nextcloud
  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. <menu xmlns:android="http://schemas.android.com/apk/res/android"
  16. xmlns:app="http://schemas.android.com/apk/res-auto">
  17. <item android:id="@+id/action_search"
  18. android:icon="@drawable/ic_search"
  19. android:title="@string/actionbar_search"
  20. android:contentDescription="@string/actionbar_search"
  21. app:actionViewClass="android.support.v7.widget.SearchView"
  22. app:showAsAction="ifRoom|collapseActionView"/>
  23. <item
  24. android:id="@+id/action_select_all"
  25. android:checkable="true"
  26. android:contentDescription="@string/select_all"
  27. android:title="@string/select_all"
  28. android:icon="@drawable/ic_select_all"
  29. app:showAsAction="never"/>
  30. <item
  31. android:id="@+id/action_sort"
  32. android:icon="@drawable/ic_sort_variant"
  33. android:orderInCategory="2"
  34. app:showAsAction="never"
  35. android:title="@string/actionbar_sort"
  36. android:contentDescription="@string/actionbar_sort"/>
  37. <item
  38. android:id="@+id/action_switch_view"
  39. android:icon="@drawable/ic_view_module"
  40. android:orderInCategory="3"
  41. app:showAsAction="never"
  42. android:title="@string/action_switch_grid_view" />
  43. </menu>