2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-19 13:23:53 +05:30
|
|
|
<FrameLayout 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"
|
2020-02-19 13:23:53 +05:30
|
|
|
android:id="@+id/coordinatorLayout"
|
2018-08-05 22:05:09 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-02-19 13:23:53 +05:30
|
|
|
android:background="?attr/colorSurface">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-02-19 13:23:53 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="wrap_content"
|
2020-02-19 13:23:53 +05:30
|
|
|
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-10 01:14:46 +05:30
|
|
|
|
2020-02-19 13:23:53 +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>
|
2018-09-10 01:14:46 +05:30
|
|
|
|
2020-02-19 13:23:53 +05:30
|
|
|
<LinearLayout
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-12-10 23:06:20 +05:30
|
|
|
android:layout_height="match_parent"
|
2020-02-19 13:23:53 +05:30
|
|
|
android:orientation="vertical">
|
2018-11-20 20:57:59 +05:30
|
|
|
|
2020-02-19 13:23:53 +05:30
|
|
|
<code.name.monkey.retromusic.views.BreadCrumbLayout
|
|
|
|
android:id="@+id/breadCrumbs"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-02-19 13:23:53 +05:30
|
|
|
android:layout_height="@dimen/tab_height"
|
|
|
|
android:paddingStart="60dp"
|
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layout_collapseMode="pin" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-01-17 22:49:06 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-11-01 23:19:22 +05:30
|
|
|
android:id="@+id/recyclerView"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-11-01 23:19:22 +05:30
|
|
|
android:clipToPadding="false"
|
2020-07-14 19:16:16 +05:30
|
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
2020-05-11 15:21:22 +05:30
|
|
|
android:overScrollMode="never"
|
2019-11-01 23:19:22 +05:30
|
|
|
android:scrollbars="none"
|
2019-11-12 23:02:30 +05:30
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-02-19 13:23:53 +05:30
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|