2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
2010-07-05 09:41:52 -04:00
|
|
|
<item
|
|
|
|
android:id="@+id/delete"
|
|
|
|
android:title="@string/delete_action"
|
2012-07-19 16:39:30 -04:00
|
|
|
android:showAsAction="always"
|
2012-07-25 17:54:30 -04:00
|
|
|
android:icon="@drawable/ic_action_delete"
|
2010-11-12 22:09:32 -05:00
|
|
|
/>
|
2010-07-05 09:41:52 -04:00
|
|
|
<item
|
2012-07-20 10:13:35 -04:00
|
|
|
android:id="@+id/read_toggle"
|
|
|
|
android:title="@string/read_toggle_action"
|
2012-07-19 16:39:30 -04:00
|
|
|
android:showAsAction="always"
|
2012-07-25 17:54:30 -04:00
|
|
|
android:icon="@drawable/ic_action_toggle_read"
|
2010-07-05 09:41:52 -04:00
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/archive"
|
|
|
|
android:title="@string/archive_action"
|
2012-07-19 16:39:30 -04:00
|
|
|
android:showAsAction="always"
|
2012-07-25 17:54:30 -04:00
|
|
|
android:icon="@drawable/ic_action_archive"
|
2012-07-19 16:39:30 -04:00
|
|
|
/>
|
|
|
|
<item
|
2012-07-20 10:13:35 -04:00
|
|
|
android:id="@+id/flag_toggle"
|
|
|
|
android:title="@string/flag_toggle_action"
|
2012-07-19 16:39:30 -04:00
|
|
|
android:showAsAction="ifRoom"
|
2012-07-25 17:54:30 -04:00
|
|
|
android:icon="@drawable/ic_action_toggle_flag"
|
2010-07-05 09:41:52 -04:00
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/spam"
|
|
|
|
android:title="@string/spam_action"
|
2012-07-19 16:39:30 -04:00
|
|
|
android:showAsAction="ifRoom"
|
2012-07-25 17:54:30 -04:00
|
|
|
android:icon="@drawable/ic_action_spam"
|
2010-07-05 09:41:52 -04:00
|
|
|
/>
|
|
|
|
<item
|
2012-07-25 17:54:30 -04:00
|
|
|
android:id="@+id/move_or_copy"
|
|
|
|
android:title="@string/move_or_copy_action"
|
|
|
|
android:showAsAction="ifRoom"
|
|
|
|
android:icon="@drawable/ic_action_move_or_copy">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/move"
|
|
|
|
android:title="@string/move_action"
|
|
|
|
/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/copy"
|
|
|
|
android:title="@string/copy_action"
|
|
|
|
/>
|
|
|
|
</menu>
|
|
|
|
</item>
|
2008-10-27 21:04:44 -04:00
|
|
|
</menu>
|