2018-08-27 07:06:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-04 07:28:02 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-27 07:06:03 +00:00
|
|
|
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"
|
2019-12-03 07:45:26 +00:00
|
|
|
tools:context="eu.faircode.email.ActivityView">
|
2018-08-27 07:06:03 +00:00
|
|
|
|
2019-03-04 07:28:02 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2018-08-27 07:06:03 +00:00
|
|
|
|
2019-03-04 07:28:02 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvAnswer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2019-05-08 06:59:57 +00:00
|
|
|
android:clipToPadding="false"
|
2019-08-16 16:48:43 +00:00
|
|
|
android:paddingTop="6dp"
|
2019-05-08 06:59:57 +00:00
|
|
|
android:paddingBottom="90dp"
|
2019-03-04 07:28:02 +00:00
|
|
|
android:scrollbarStyle="outsideOverlay"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<eu.faircode.email.ContentLoadingProgressBar
|
|
|
|
android:id="@+id/pbWait"
|
|
|
|
style="@style/Base.Widget.AppCompat.ProgressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:indeterminate="true"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.Group
|
|
|
|
android:id="@+id/grpReady"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:constraint_referenced_ids="rvAnswer" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2018-08-27 07:06:03 +00:00
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
android:id="@+id/fab"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-08 06:59:57 +00:00
|
|
|
android:layout_gravity="end|bottom"
|
2018-11-13 10:05:01 +00:00
|
|
|
android:layout_margin="@dimen/fab_padding"
|
2019-12-29 12:02:08 +00:00
|
|
|
android:contentDescription="@string/title_add"
|
2019-09-09 17:35:59 +00:00
|
|
|
android:tint="?attr/colorFabForeground"
|
2019-01-13 13:56:39 +00:00
|
|
|
android:tooltipText="@string/title_add"
|
2019-09-09 17:35:59 +00:00
|
|
|
app:backgroundTint="?attr/colorFabBackground"
|
2019-08-16 16:48:43 +00:00
|
|
|
app:srcCompat="@drawable/baseline_add_24" />
|
2019-03-04 07:28:02 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|