mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-12 04:25:08 -05:00
bbcc4988ba
The fragment should be fully functional. The only thing missing is the animation when showing the next/previous message.
16 lines
503 B
XML
16 lines
503 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<item
|
|
android:id="@+id/next_message"
|
|
android:title="@string/next_action"
|
|
android:icon="?attr/iconActionNextMessage"
|
|
android:showAsAction="always"
|
|
/>
|
|
<item
|
|
android:id="@+id/previous_message"
|
|
android:title="@string/previous_action"
|
|
android:icon="?attr/iconActionPreviousMessage"
|
|
android:showAsAction="always"
|
|
/>
|
|
</menu>
|