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

63 lines
2.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2020-02-19 07:53:53 +00:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 08:03:38 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2020-02-19 07:53:53 +00:00
android:id="@+id/coordinatorLayout"
2018-08-05 16:35:09 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-02-19 07:53:53 +00:00
android:background="?attr/colorSurface">
2018-07-27 13:07:33 +00:00
2020-02-19 07:53:53 +00:00
<LinearLayout
android:id="@android:id/empty"
android:layout_width="wrap_content"
2018-09-09 19:44:46 +00:00
android:layout_height="wrap_content"
2020-02-19 07:53:53 +00:00
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone"
tools:visibility="visible">
<com.google.android.material.textview.MaterialTextView
android:id="@+id/emptyEmoji"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:text="@string/empty_text_emoji"
android:textAppearance="@style/TextViewHeadline3" />
2018-09-09 19:44:46 +00:00
2020-02-19 07:53:53 +00:00
<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>
2018-09-09 19:44:46 +00:00
2020-02-19 07:53:53 +00:00
<LinearLayout
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
2019-12-10 17:36:20 +00:00
android:layout_height="match_parent"
2020-02-19 07:53:53 +00:00
android:orientation="vertical">
2018-11-20 15:27:59 +00:00
2020-02-19 07:53:53 +00:00
<code.name.monkey.retromusic.views.BreadCrumbLayout
android:id="@+id/breadCrumbs"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
2020-02-19 07:53:53 +00:00
android:layout_height="@dimen/tab_height"
android:paddingStart="60dp"
android:paddingEnd="8dp"
app:layout_collapseMode="pin" />
2018-07-27 13:07:33 +00:00
2020-01-17 17:19:06 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
2018-09-09 19:44:46 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
2020-07-14 13:46:16 +00:00
android:layoutAnimation="@anim/layout_animation_fall_down"
2020-05-11 09:51:22 +00:00
android:overScrollMode="never"
android:scrollbars="none"
2019-11-12 17:32:30 +00:00
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2018-07-27 13:07:33 +00:00
2020-02-19 07:53:53 +00:00
</LinearLayout>
</FrameLayout>