18 lines
741 B
XML
18 lines
741 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/swipeRefresher"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/clients"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:scrollbars="vertical"
|
|
android:contentDescription="@string/title_clients"
|
|
tools:listitem="@layout/listitem_client"/>
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|