mirror of https://github.com/M66B/FairEmail.git
49 lines
2.0 KiB
XML
49 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.constraint.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=".ActivityView">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/rvFolder"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
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" />
|
|
|
|
<ProgressBar
|
|
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" />
|
|
|
|
<android.support.constraint.Group
|
|
android:id="@+id/grpReady"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:constraint_referenced_ids="rvFolder" />
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end|bottom"
|
|
android:layout_margin="16dp"
|
|
android:src="@drawable/baseline_edit_24"
|
|
android:tint="@color/colorActionForeground"
|
|
app:backgroundTint="?attr/colorAccent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
</android.support.constraint.ConstraintLayout>
|