• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:app="http://schemas.android.com/apk/res-auto"
4    xmlns:tools="http://schemas.android.com/tools"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    tools:context=".result.FormattableFragment">
8
9  <androidx.recyclerview.widget.RecyclerView
10      android:id="@+id/recycler_view"
11      android:layout_width="match_parent"
12      android:layout_height="0dp"
13      android:layout_marginBottom="5dp"
14      android:scrollbars="vertical"
15      app:layout_constraintBottom_toTopOf="@id/btn_update_selected"
16      app:layout_constraintEnd_toEndOf="parent"
17      app:layout_constraintStart_toStartOf="parent"
18      app:layout_constraintTop_toTopOf="parent" />
19
20  <Button
21      android:id="@+id/btn_update_selected"
22      android:layout_width="wrap_content"
23      android:layout_height="wrap_content"
24      android:layout_marginBottom="@dimen/app_default_spacing_between_items"
25      android:text="@string/formattable_update_selected_text_default"
26      app:layout_constraintBottom_toBottomOf="parent"
27      app:layout_constraintEnd_toEndOf="parent"
28      app:layout_constraintStart_toStartOf="parent" />
29
30</androidx.constraintlayout.widget.ConstraintLayout>
31