2020-01-04 01:48:24 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-02 11:18:48 +01:00
|
|
|
android:fitsSystemWindows="true"
|
2020-01-04 01:48:24 +01:00
|
|
|
android:animateLayoutChanges="true">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2020-01-05 03:19:09 +01:00
|
|
|
android:clipToPadding="false"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-01-04 01:48:24 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:listitem="@layout/migration_source_item">
|
|
|
|
|
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
|
|
|
|
2020-01-05 03:19:09 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
2020-04-23 02:32:54 +02:00
|
|
|
style="@style/Theme.Widget.FAB"
|
2020-05-21 09:03:55 +02:00
|
|
|
android:src="@drawable/ic_arrow_forward_24dp"
|
2020-01-05 03:19:09 +01:00
|
|
|
app:layout_anchor="@id/recycler"
|
2020-01-04 01:48:24 +01:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-04-23 02:32:54 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
2020-01-04 01:48:24 +01:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|