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"
|
|
|
|
style="@style/Theme.Widget.FABFixed"
|
2020-01-04 01:48:24 +01:00
|
|
|
android:clickable="true"
|
2020-01-05 03:19:09 +01:00
|
|
|
android:focusable="true"
|
2020-01-06 02:05:49 +01:00
|
|
|
android:src="@drawable/ic_arrow_forward_white_24dp"
|
2020-01-05 03:19:09 +01:00
|
|
|
app:layout_anchor="@id/recycler"
|
|
|
|
app:layout_anchorGravity="bottom|right|end"
|
2020-01-04 01:48:24 +01:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-01 10:29:26 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:backgroundTint="?attr/colorAccent" />
|
2020-01-04 01:48:24 +01:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|