tachiyomi/app/src/main/res/layout/pre_migration_controller.xml

35 lines
1.5 KiB
XML
Raw Normal View History

<?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 02:44:24 +01:00
android:layout_marginTop="?attr/actionBarSize"
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"
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"
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"
app:layout_constraintBottom_toBottomOf="parent"
2020-02-01 10:29:26 +01:00
app:layout_constraintEnd_toEndOf="parent"
app:backgroundTint="?attr/colorAccent" />
</androidx.constraintlayout.widget.ConstraintLayout>