Archived
34 lines
1.5 KiB
XML
34 lines
1.5 KiB
XML
<?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"
|
||
|
|
android:id="@+id/quote_constraint_layout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:animateLayoutChanges="true">
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/quote_scroller"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:paddingBottom="84dp"
|
||
|
|
android:clipToPadding="false"
|
||
|
|
android:layout_marginHorizontal="8dp"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
||
|
|
app:layout_constraintRight_toRightOf="parent"/>
|
||
|
|
|
||
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||
|
|
android:id="@+id/add_fab"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
android:layout_marginEnd="16dp"
|
||
|
|
android:layout_marginBottom="16dp"
|
||
|
|
android:backgroundTint="?attr/colorOnPrimary"
|
||
|
|
android:src="@drawable/add"
|
||
|
|
app:tint="?attr/colorPrimary"/>
|
||
|
|
<!-- app:shapeAppearanceOverlay="@style/ShapeAppearanceOverlayExtended"-->
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|