List versioned files in a repository

This commit is contained in:
2023-03-03 15:22:15 +01:00
parent 388919000a
commit a2c1a1d27b
4 changed files with 74 additions and 2 deletions

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical">
@@ -19,4 +20,10 @@
android:layout_height="wrap_content"
android:text="@string/repository_description"
android:padding="16dp" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/versioned_files_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"/>
</LinearLayout>