2016-03-03 17:46:31 +01:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity">
|
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_notifications"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:icon="@drawable/ic_bell_outline_white_24dp"
|
|
|
|
android:title="@string/notifications"
|
|
|
|
app:showAsAction="always" />
|
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_conversations"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:icon="@drawable/ic_message_text_outline_white_24dp"
|
|
|
|
android:title="@string/messages"
|
|
|
|
app:showAsAction="always" />
|
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_share"
|
|
|
|
android:icon="@drawable/ic_share_white_24dp"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:title="@string/jb_share"
|
2016-03-20 22:49:11 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_exit"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:icon="@drawable/ic_sync_white_24dp"
|
|
|
|
android:title="@string/exit_app"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
|
|
|
</menu>
|