Show status of loading more posts in MorePostsInfoFragment.

This commit is contained in:
Docile-Alligator
2022-11-05 19:51:40 +11:00
parent c86408dbe5
commit fa472a3ad8
5 changed files with 199 additions and 12 deletions

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.MorePostsInfoFragment">
<TextView
android:id="@+id/info_text_view_more_posts_info_fragment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:textSize="?attr/font_default"
android:fontFamily="?attr/font_family"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -1312,4 +1312,7 @@
<string name="invalid_regex">Invalid regex pattern</string>
<string name="load_more_posts_failed">Failed to load more posts</string>
<string name="no_more_posts">No more posts</string>
</resources>