Added some actions
BIN
app/src/main/res/drawable-hdpi/ic_action_delete.png
Normal file → Executable file
Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 399 B |
BIN
app/src/main/res/drawable-hdpi/ic_action_mark_unread.png
Normal file
After Width: | Height: | Size: 347 B |
BIN
app/src/main/res/drawable-hdpi/ic_action_placeholder.png
Normal file
After Width: | Height: | Size: 678 B |
BIN
app/src/main/res/drawable-hdpi/ic_action_reply.png
Normal file → Executable file
Before Width: | Height: | Size: 486 B After Width: | Height: | Size: 632 B |
BIN
app/src/main/res/drawable-mdpi/ic_action_delete.png
Normal file → Executable file
Before Width: | Height: | Size: 428 B After Width: | Height: | Size: 257 B |
BIN
app/src/main/res/drawable-mdpi/ic_action_mark_unread.png
Normal file
After Width: | Height: | Size: 257 B |
BIN
app/src/main/res/drawable-mdpi/ic_action_placeholder.png
Normal file
After Width: | Height: | Size: 433 B |
BIN
app/src/main/res/drawable-mdpi/ic_action_reply.png
Normal file → Executable file
Before Width: | Height: | Size: 330 B After Width: | Height: | Size: 412 B |
BIN
app/src/main/res/drawable-xhdpi/ic_action_delete.png
Normal file → Executable file
Before Width: | Height: | Size: 775 B After Width: | Height: | Size: 491 B |
BIN
app/src/main/res/drawable-xhdpi/ic_action_mark_unread.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
app/src/main/res/drawable-xhdpi/ic_action_placeholder.png
Normal file
After Width: | Height: | Size: 844 B |
BIN
app/src/main/res/drawable-xhdpi/ic_action_reply.png
Normal file → Executable file
Before Width: | Height: | Size: 623 B After Width: | Height: | Size: 849 B |
BIN
app/src/main/res/drawable-xxhdpi/ic_action_delete.png
Normal file → Executable file
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 849 B |
BIN
app/src/main/res/drawable-xxhdpi/ic_action_mark_unread.png
Normal file
After Width: | Height: | Size: 620 B |
BIN
app/src/main/res/drawable-xxhdpi/ic_action_placeholder.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
app/src/main/res/drawable-xxhdpi/ic_action_reply.png
Normal file → Executable file
Before Width: | Height: | Size: 929 B After Width: | Height: | Size: 1.3 KiB |
BIN
app/src/main/res/drawable-xxxhdpi/ic_action_delete.png
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
app/src/main/res/drawable-xxxhdpi/ic_action_reply.png
Executable file
After Width: | Height: | Size: 1.9 KiB |
31
app/src/main/res/layout/fragment_subscribtions.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ListView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@id/android:list"
|
||||
|
||||
android:paddingBottom="88dp"
|
||||
android:clipToPadding="false"
|
||||
android:scrollbarStyle="outsideOverlay"
|
||||
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentStart="true"
|
||||
android:layout_alignParentBottom="true"/>
|
||||
|
||||
<android.support.design.widget.FloatingActionButton
|
||||
android:id="@+id/fab_compose_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:src="@drawable/ic_fab_compose_message"
|
||||
app:elevation="8dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_margin="16dp"/>
|
||||
</RelativeLayout>
|
25
app/src/main/res/menu/message.xml
Normal file
@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/reply"
|
||||
app:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_placeholder"
|
||||
android:title="@string/reply"/>
|
||||
<item
|
||||
android:id="@+id/delete"
|
||||
app:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_placeholder"
|
||||
android:title="@string/delete"/>
|
||||
<item
|
||||
android:id="@+id/mark_unread"
|
||||
app:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_placeholder"
|
||||
android:title="@string/mark_unread"/>
|
||||
<item
|
||||
android:id="@+id/archive"
|
||||
app:showAsAction="ifRoom"
|
||||
android:icon="@drawable/ic_action_placeholder"
|
||||
android:title="@string/archive"/>
|
||||
</menu>
|
11
app/src/main/res/menu/message_list.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||
<item
|
||||
android:id="@+id/empty_trash"
|
||||
app:showAsAction="never"
|
||||
android:icon="@drawable/ic_action_placeholder"
|
||||
android:title="@string/empty_trash"
|
||||
android:visible="false"/>
|
||||
</menu>
|
@ -24,4 +24,10 @@
|
||||
<string name="manage_identity">Identität verwalten</string>
|
||||
<string name="subscribe">Abonnieren</string>
|
||||
<string name="title_activity_open_bitmessage_link">Kontakt importieren</string>
|
||||
<string name="delete">Löschen</string>
|
||||
<string name="reply">Antworten</string>
|
||||
<string name="n_new_messages">%d neue Nachrichten</string>
|
||||
<string name="archive">Archiv</string>
|
||||
<string name="empty_trash">Papierkorb leeren</string>
|
||||
<string name="mark_unread">Als ungelesen markieren</string>
|
||||
</resources>
|
@ -27,4 +27,7 @@
|
||||
<string name="n_new_messages">%d new messages</string>
|
||||
<string name="reply">Reply</string>
|
||||
<string name="delete">Delete</string>
|
||||
<string name="mark_unread">Mark unread</string>
|
||||
<string name="archive">Archive</string>
|
||||
<string name="empty_trash">Empty Trash</string>
|
||||
</resources>
|
||||
|