RetroMusicPlayer/app/src/main/res/layout/fragment_folder.xml

65 lines
2.7 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2020-09-25 23:08:59 +05:30
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 13:33:38 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-08-05 22:05:09 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2021-09-16 18:29:31 +05:30
android:fitsSystemWindows="true"
android:transitionGroup="true">
2018-07-27 18:37:33 +05:30
<code.name.monkey.retromusic.views.insets.InsetsRecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:overScrollMode="@integer/overScrollMode"
android:scrollbars="none"
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
<code.name.monkey.retromusic.views.TopAppBarLayout
2020-09-25 23:08:59 +05:30
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
2018-09-10 01:14:46 +05:30
android:layout_height="wrap_content"
2021-10-27 10:54:19 +05:30
app:liftOnScroll="true"
2022-05-18 16:17:18 +05:30
style="?appBarLayoutStyle"
2021-10-27 10:54:19 +05:30
android:fitsSystemWindows="true">
2020-09-25 23:08:59 +05:30
2021-10-27 10:54:19 +05:30
<code.name.monkey.retromusic.views.BreadCrumbLayout
android:id="@+id/breadCrumbs"
android:layout_width="match_parent"
android:layout_height="@dimen/tab_height"
android:paddingStart="60dp"
android:paddingEnd="8dp"
app:layout_collapseMode="pin" />
</code.name.monkey.retromusic.views.TopAppBarLayout>
2020-09-25 23:08:59 +05:30
2021-10-27 10:54:19 +05:30
<LinearLayout
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone"
tools:visibility="visible">
2018-09-10 01:14:46 +05:30
2021-10-27 10:54:19 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/emptyEmoji"
2020-02-19 13:23:53 +05:30
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2021-10-27 10:54:19 +05:30
android:layout_marginBottom="16dp"
android:text="@string/empty_text_emoji"
android:textAppearance="@style/TextViewHeadline3" />
2018-07-27 18:37:33 +05:30
2021-10-27 10:54:19 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/emptyText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/nothing_to_see"
android:textAppearance="@style/TextViewHeadline5"
android:textColor="?android:attr/textColorSecondary"
tools:visibility="visible" />
</LinearLayout>
2020-09-25 23:08:59 +05:30
</androidx.coordinatorlayout.widget.CoordinatorLayout>