summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_cache.xml
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2022-06-20 18:32:12 +0200
committerThomas <tschneider.ac@gmail.com>2022-06-20 18:32:12 +0200
commit154cc63f69d4f473c6176a4bc1191137ec9d5d95 (patch)
treecdb723f8ee54295812c779d6de953356aa09e40a /app/src/main/res/layout/activity_cache.xml
parente4255286480f796551b3ed0d845e65c8b163e9e3 (diff)
Improve cache
Diffstat (limited to 'app/src/main/res/layout/activity_cache.xml')
-rw-r--r--app/src/main/res/layout/activity_cache.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_cache.xml b/app/src/main/res/layout/activity_cache.xml
new file mode 100644
index 000000000..075c1d3c7
--- /dev/null
+++ b/app/src/main/res/layout/activity_cache.xml
@@ -0,0 +1,40 @@
+<?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"
+ android:layout_margin="@dimen/fab_margin">
+
+ <com.google.android.material.checkbox.MaterialCheckBox
+ android:id="@+id/label_file_cache"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="10dp"
+ android:checked="true"
+ android:text="@string/files_cache_size"
+ app:buttonTint="@color/cyanea_accent_dark_reference"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/file_cache_size"
+ android:layout_width="100dp"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="10dp"
+ android:gravity="center"
+ android:textSize="18sp"
+ app:layout_constraintBottom_toBottomOf="@+id/label_file_cache"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toTopOf="@+id/label_file_cache"
+ tools:text="105 Mb" />
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/cache_recyclerview"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@+id/label_file_cache" />
+</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file