2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-22 23:24:07 +05:30
|
|
|
<FrameLayout
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:elevation="0dp"
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/coordinatorLayout"
|
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"
|
|
|
|
android:background="?attr/colorSurface">
|
2018-11-20 20:57:59 +05:30
|
|
|
|
2018-09-10 01:14:46 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/appBarLayout"
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="wrap_content"
|
2019-12-06 19:55:21 +05:30
|
|
|
android:background="@android:color/transparent"
|
2019-10-12 02:31:39 +05:30
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-06-03 08:47:20 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2019-07-30 09:32:56 +05:30
|
|
|
android:id="@+id/toolbarContainer"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-03 08:47:20 +05:30
|
|
|
app:cardCornerRadius="8dp"
|
2019-07-30 09:32:56 +05:30
|
|
|
app:cardUseCompatPadding="true"
|
2019-10-12 02:31:39 +05:30
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
2018-08-08 13:33:38 +05:30
|
|
|
|
2019-10-01 23:45:06 +05:30
|
|
|
<LinearLayout
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-10-01 23:45:06 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2019-06-03 08:47:20 +05:30
|
|
|
|
2019-10-01 23:45:06 +05:30
|
|
|
<FrameLayout
|
2019-09-29 08:39:21 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-10-01 23:45:06 +05:30
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/toolbar_height"
|
|
|
|
app:contentInsetStart="0dp"
|
|
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
|
|
app:popupTheme="?toolbarPopupTheme"
|
2020-01-28 23:36:38 +05:30
|
|
|
app:title="@string/action_search"
|
2019-10-01 23:45:06 +05:30
|
|
|
app:titleMarginStart="0dp"
|
|
|
|
app:titleTextAppearance="@style/ToolbarTextAppearanceSearch"
|
|
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
|
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/cab_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.BreadCrumbLayout
|
|
|
|
android:id="@+id/breadCrumbs"
|
2019-06-03 08:47:20 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-10-01 23:45:06 +05:30
|
|
|
android:layout_height="@dimen/tab_height"
|
|
|
|
android:paddingStart="60dp"
|
2019-10-12 02:31:39 +05:30
|
|
|
android:paddingEnd="8dp"
|
|
|
|
app:layout_collapseMode="pin" />
|
2019-10-01 23:45:06 +05:30
|
|
|
</LinearLayout>
|
2019-06-03 08:47:20 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-09-10 01:14:46 +05:30
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
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"
|
|
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
|
|
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
|
|
|
|
2019-12-10 23:06:20 +05:30
|
|
|
<LinearLayout
|
2019-11-01 23:19:22 +05:30
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2019-12-10 23:06:20 +05:30
|
|
|
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" />
|
|
|
|
|
|
|
|
<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>
|
2019-10-01 23:45:06 +05:30
|
|
|
|
2018-09-10 01:14:46 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|