72 lines
2.9 KiB
XML
72 lines
2.9 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"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
tools:context=".components.report.fragments.ReportStatusesFragment">
|
||
|
|
||
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||
|
android:id="@+id/swipeRefreshLayout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
app:layout_constraintBottom_toTopOf="@id/buttonContinue"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/recyclerView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
|
||
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBarTop"
|
||
|
style="?android:attr/progressBarStyleHorizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:indeterminate="true"
|
||
|
app:layout_constraintTop_toTopOf="@id/swipeRefreshLayout" />
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBarBottom"
|
||
|
style="?android:attr/progressBarStyleHorizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:indeterminate="true"
|
||
|
app:layout_constraintBottom_toBottomOf="@id/swipeRefreshLayout" />
|
||
|
|
||
|
<ProgressBar
|
||
|
android:id="@+id/progressBarLoading"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:indeterminate="true"
|
||
|
android:visibility="gone"
|
||
|
app:layout_constraintBottom_toBottomOf="@id/swipeRefreshLayout"
|
||
|
app:layout_constraintEnd_toEndOf="@id/swipeRefreshLayout"
|
||
|
app:layout_constraintStart_toStartOf="@id/swipeRefreshLayout"
|
||
|
app:layout_constraintTop_toTopOf="@id/swipeRefreshLayout" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/buttonCancel"
|
||
|
style="@style/TuskyButton.Outlined"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:text="@android:string/cancel"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintEnd_toStartOf="@id/buttonContinue" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/buttonContinue"
|
||
|
style="@style/TuskyButton"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:text="@string/button_continue"
|
||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
app:layout_constraintEnd_toEndOf="parent" />
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|