Merge pull request #973 from orange-elephant/entries-shown-count

Add entries showing count
This commit is contained in:
Alexander Bakker 2022-09-28 13:48:35 +02:00 committed by GitHub
commit acc6b9a3de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 186 additions and 98 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/entries_shown_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="4dp"
android:layout_centerInParent="true"
android:textColor="@color/extra_info_text"
android:textSize="18sp" />
</RelativeLayout>