2019-07-31 01:29:12 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-06 09:26:31 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-07-31 01:29:12 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-04-17 05:45:05 +02:00
|
|
|
android:id="@+id/frameLayout"
|
2019-07-31 01:29:12 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-07-31 09:39:51 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:animateLayoutChanges="true">
|
2019-07-31 01:29:12 +02:00
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-07-31 01:29:12 +02:00
|
|
|
android:id="@+id/recycler"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="0dp"
|
2020-04-17 05:45:05 +02:00
|
|
|
android:clipToPadding="false"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-07-31 01:29:12 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-04-17 02:56:52 +02:00
|
|
|
tools:listitem="@layout/migration_source_item">
|
2019-07-31 09:39:51 +02:00
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
</androidx.recyclerview.widget.RecyclerView>
|
2019-07-31 09:39:51 +02:00
|
|
|
|
2020-01-06 09:26:31 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|