nextcloud-android/res/menu/main_menu.xml

56 lines
2.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2013-02-07 21:45:10 +04:00
<!--
ownCloud Android client application
Copyright (C) 2012 Bartek Przybylski
2015-03-05 15:27:45 +03:00
Copyright (C) 2015 ownCloud Inc.
2013-02-07 21:45:10 +04:00
This program is free software: you can redistribute it and/or modify
2013-04-17 14:26:13 +04:00
it under the terms of the GNU General Public License version 2,
as published by the Free Software Foundation.
2013-02-07 21:45:10 +04:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
2015-05-25 13:39:05 +03:00
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
2014-03-18 01:14:07 +04:00
android:id="@+id/action_upload"
android:icon="@drawable/ic_action_upload"
android:orderInCategory="2"
2015-05-25 13:39:05 +03:00
app:showAsAction="always"
android:title="@string/actionbar_upload"
android:contentDescription="@string/actionbar_upload"/>
<item
android:id="@+id/action_create_dir"
android:icon="@drawable/ic_action_create_dir"
android:orderInCategory="2"
2015-05-25 13:39:05 +03:00
app:showAsAction="always"
android:title="@string/actionbar_mkdir"
android:contentDescription="@string/actionbar_mkdir"/>
<item
2014-03-18 01:14:07 +04:00
android:id="@+id/action_sync_account"
android:icon="@drawable/ic_action_refresh"
android:orderInCategory="2"
2015-05-25 13:39:05 +03:00
app:showAsAction="never"
android:title="@string/actionbar_sync"
android:contentDescription="@string/actionbar_sync"/>
<item
android:id="@+id/action_sort"
2015-01-05 21:53:40 +03:00
android:icon="@android:drawable/ic_menu_sort_by_size"
android:orderInCategory="2"
2015-05-27 17:53:35 +03:00
app:showAsAction="never"
android:title="@string/actionbar_sort"
android:contentDescription="@string/actionbar_sort"/>
2015-05-25 13:39:05 +03:00
<!-- <item android:id="@+id/search"
android:title="@string/actionbar_search"
android:icon="@drawable/ic_action_search"></item> -->
</menu>