|
|
|
@ -18,18 +18,30 @@
|
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_marginStart="@dimen/fab_margin"
|
|
|
|
|
android:layout_marginEnd="@dimen/fab_margin"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/title_bottom"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:text="@string/bottom_menu"
|
|
|
|
|
android:textColor="@color/cyanea_accent_reference"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
|
android:id="@+id/lv_reorder_bottom_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title_bottom">
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/lv_reorder_bottom"
|
|
|
|
@ -38,12 +50,21 @@
|
|
|
|
|
android:scrollbars="none" />
|
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/title_top"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:text="@string/top_menu"
|
|
|
|
|
android:textColor="@color/cyanea_accent_reference"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/lv_reorder_bottom_container" />
|
|
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/lv_reorder_bottom_container">
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title_top">
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/lv_reorder_tabs"
|
|
|
|
|