2018-11-24 01:05:17 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2018-04-30 14:34:02 +03:00
|
|
|
~ Nextcloud Talk application
|
|
|
|
~
|
|
|
|
~ @author Mario Danic
|
|
|
|
~ Copyright (C) 2017-2018 Mario Danic <mario@lovelyhq.com>
|
|
|
|
~
|
|
|
|
~ This program is free software: you can redistribute it and/or modify
|
|
|
|
~ it under the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation, either version 3 of the License, or
|
|
|
|
~ at your option) any later version.
|
|
|
|
~
|
|
|
|
~ 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/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-11-24 01:05:17 +03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2018-04-30 14:34:02 +03:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/conversation_voice_call"
|
|
|
|
android:icon="@drawable/ic_call_white_24dp"
|
2018-11-24 01:05:17 +03:00
|
|
|
android:orderInCategory="0"
|
2018-05-09 14:46:22 +03:00
|
|
|
android:title="@string/nc_conversation_menu_voice_call"
|
2019-01-03 01:05:55 +03:00
|
|
|
app:showAsAction="ifRoom" />
|
2018-04-30 14:34:02 +03:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/conversation_video_call"
|
|
|
|
android:icon="@drawable/ic_videocam_white_24px"
|
2018-11-24 01:05:17 +03:00
|
|
|
android:orderInCategory="1"
|
2018-05-09 14:46:22 +03:00
|
|
|
android:title="@string/nc_conversation_menu_video_call"
|
2019-01-03 01:05:55 +03:00
|
|
|
app:showAsAction="ifRoom" />
|
2019-01-02 02:41:35 +03:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/conversation_info"
|
|
|
|
android:icon="@drawable/ic_info_white_24dp"
|
|
|
|
android:orderInCategory="1"
|
|
|
|
android:title="@string/nc_conversation_menu_conversation_info"
|
2019-01-03 01:05:55 +03:00
|
|
|
app:showAsAction="never" />
|
2018-04-30 14:34:02 +03:00
|
|
|
</menu>
|