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"
|
2016-03-26 01:14:17 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-06-04 17:10:24 +02:00
|
|
|
tools:context=".activity.MainActivity">
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_notifications"
|
2016-08-07 03:30:44 +02:00
|
|
|
android:icon="@drawable/ic_notifications_white_48px"
|
2016-03-03 17:46:31 +01:00
|
|
|
android:title="@string/notifications"
|
|
|
|
app:showAsAction="always" />
|
|
|
|
|
|
|
|
<item
|
2016-03-20 22:49:11 +01:00
|
|
|
android:id="@+id/action_conversations"
|
2016-08-07 03:30:44 +02:00
|
|
|
android:icon="@drawable/ic_mail_white_48px"
|
2016-08-07 00:32:30 +02:00
|
|
|
android:title="@string/conversations"
|
2016-03-03 17:46:31 +01:00
|
|
|
app:showAsAction="always" />
|
|
|
|
|
2016-08-07 23:11:47 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_reload"
|
|
|
|
android:icon="@drawable/ic_refresh_white_24dp"
|
|
|
|
android:title="@string/reload"
|
|
|
|
app:showAsAction="always"/>
|
|
|
|
|
2016-03-03 17:46:31 +01:00
|
|
|
</menu>
|