list now scrollable, reformats list handling

- urls are now auto-generated from android
  and no longer self-handled
- long-clicking a message starts decryption
  process, short clicking does nothing right
  now
- only first three messages are decrypted
  on app load, to improve performance
- fragment structure now inside a list view
  which makes the listview inside scrollable
  automatically
This commit is contained in:
2022-03-05 15:36:31 +01:00
parent 22b2ac96b9
commit 67fe7381aa
7 changed files with 70 additions and 38 deletions

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/cardview_shadow_start_color"/>
<stroke android:width="3dp" android:color="@color/cardview_dark_background" />
<corners android:radius="10dp"/>
<padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>