Moved friends bottom menu item to activity menu.

This commit is contained in:
Pierre
2018-04-01 10:18:12 +02:00
parent d9b8c4d98e
commit de05f52ffd
5 changed files with 26 additions and 5 deletions

View File

@ -1,10 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/main_bottom_navigation_notif"
android:title="@string/navigation_bottom_notif_item"
android:icon="@drawable/ic_notif"/>
<!--<item
android:id="@+id/main_bottom_navigation_friends_list"
android:title="@string/navigation_bottom_friends_item"
android:icon="@drawable/ic_menu_allfriends"
/>
/>-->
<!--<item
android:id="@+id/main_bottom_navigation_users_view"

View File

@ -2,6 +2,12 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<!-- Display friends list -->
<item
android:id="@+id/action_friends_list"
android:title="@string/main_menu_friends_list" />
<!-- Sign out -->
<item
android:id="@+id/action_logout"
android:title="@string/main_menu_logout"

View File

@ -124,4 +124,6 @@
<string name="btn_show_create_form_description">Show / Hide create post form.</string>
<string name="err_post_content_too_short">The content of the post is too short!</string>
<string name="err_submit_post">An error occurred while trying to create the post!</string>
<string name="navigation_bottom_notif_item">Notifications</string>
<string name="main_menu_friends_list">Friends list</string>
</resources>