Mark emails read/unread, move to folder
BIN
res/drawable-hdpi/ic_collections_collection.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-hdpi/ic_content_read.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-hdpi/ic_content_unread.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-mdpi/ic_collections_collection.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
res/drawable-mdpi/ic_content_read.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-mdpi/ic_content_unread.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
res/drawable-xhdpi/ic_collections_collection.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
res/drawable-xhdpi/ic_content_read.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
res/drawable-xhdpi/ic_content_unread.png
Normal file
|
After Width: | Height: | Size: 1.8 KiB |
@@ -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>
|
||||
@@ -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>
|
||||
|
||||