2024-08-20 18:18:35 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".activities.files.FileManagerActivity">
|
|
|
|
|
2024-08-29 23:00:18 +02:00
|
|
|
<androidx.appcompat.widget.SearchView
|
|
|
|
android:id="@+id/fileListSearchView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="8dp" />
|
|
|
|
|
2024-08-20 18:18:35 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/fileListView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2024-08-29 23:00:18 +02:00
|
|
|
android:layout_below="@id/fileListSearchView"
|
2024-08-20 18:18:35 +02:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:divider="@null"
|
|
|
|
android:scrollbarSize="5dp"
|
|
|
|
android:scrollbars="vertical" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|