Mark emails read/unread, move to folder

This commit is contained in:
str4d
2014-04-16 13:09:11 +00:00
parent 77f6f7a550
commit 0dfe114437
17 changed files with 190 additions and 13 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -3,9 +3,24 @@
xmlns:i2pandroid="http://schemas.android.com/apk/res-auto" >
<item
android:id="@+id/action_delete_emails"
android:id="@+id/action_delete"
android:icon="@drawable/ic_content_discard"
android:title="@string/action_delete_emails"
android:title="@string/action_delete"
i2pandroid:showAsAction="ifRoom"/>
<item
android:id="@+id/action_mark_read"
android:icon="@drawable/ic_content_read"
android:title="@string/action_mark_read"
i2pandroid:showAsAction="ifRoom"/>
<item
android:id="@+id/action_mark_unread"
android:icon="@drawable/ic_content_unread"
android:title="@string/action_mark_unread"
i2pandroid:showAsAction="ifRoom"/>
<item
android:id="@+id/action_move_to"
android:icon="@drawable/ic_collections_collection"
android:title="@string/action_move_to"
i2pandroid:showAsAction="ifRoom"/>
</menu>

View File

@@ -7,7 +7,10 @@
<string name="action_settings">Settings</string>
<string name="items_selected">%s selected</string>
<string name="action_delete_emails">Delete selected emails</string>
<string name="action_delete">Delete</string>
<string name="action_mark_read">Mark read</string>
<string name="action_mark_unread">Mark unread</string>
<string name="action_move_to">Move to</string>
<string name="drawer_open">Open nav</string>
<string name="drawer_close">Close nav</string>