summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/activity_followed_tags.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/activity_followed_tags.xml')
-rw-r--r--app/src/main/res/layout/activity_followed_tags.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_followed_tags.xml b/app/src/main/res/layout/activity_followed_tags.xml
new file mode 100644
index 000000000..6a1558ee4
--- /dev/null
+++ b/app/src/main/res/layout/activity_followed_tags.xml
@@ -0,0 +1,33 @@
+<?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="match_parent"
+ android:orientation="vertical"
+ android:padding="@dimen/fab_margin">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/recycler_view"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:clipToPadding="false"
+ android:scrollbars="none" />
+
+ <TextView
+ android:id="@+id/not_content"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_gravity="center"
+ android:gravity="center"
+ android:padding="10dp"
+ android:text="@string/action_followed_tag_empty"
+ android:textSize="20sp"
+ android:textStyle="bold"
+ android:typeface="serif"
+ android:visibility="gone" />
+
+ <androidx.fragment.app.FragmentContainerView
+ android:id="@+id/fragment_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:visibility="gone" />
+</RelativeLayout>