fedilab-Android-App/app/src/main/res/layouts/mastodon/layout/activity_followed_tags.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2022-11-15 10:51:46 +01:00
<?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"
2022-12-02 09:57:23 +01:00
android:orientation="vertical">
2022-11-15 10:51:46 +01:00
<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: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>