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

118 lines
5.1 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
2018-08-05 16:35:09 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-08-08 08:03:38 +00:00
android:orientation="vertical">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +00:00
<FrameLayout
2018-09-09 19:44:46 +00:00
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 15:34:26 +00:00
android:id="@+id/coordinatorLayout"
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"
android:background="?attr/colorSurface">
2018-11-20 15:27:59 +00:00
2018-09-09 19:44:46 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/appBarLayout"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
2018-09-09 19:44:46 +00:00
android:layout_height="wrap_content"
2019-12-06 14:25:21 +00:00
android:background="@android:color/transparent"
android:elevation="0dp"
app:elevation="0dp">
2018-07-27 13:07:33 +00:00
2019-06-03 03:17:20 +00:00
<com.google.android.material.card.MaterialCardView
android:id="@+id/toolbarContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-06-03 03:17:20 +00:00
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true"
app:layout_scrollFlags="scroll|enterAlways">
2018-08-08 08:03:38 +00:00
2019-10-01 18:15:06 +00:00
<LinearLayout
2018-11-20 15:27:59 +00:00
android:layout_width="match_parent"
2019-10-01 18:15:06 +00:00
android:layout_height="wrap_content"
android:orientation="vertical">
2019-06-03 03:17:20 +00:00
2019-10-01 18:15:06 +00:00
<FrameLayout
android:layout_width="match_parent"
2019-10-01 18:15:06 +00:00
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 18:06:38 +00:00
app:title="@string/action_search"
2019-10-01 18:15:06 +00:00
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 03:17:20 +00:00
android:layout_width="match_parent"
2019-10-01 18:15:06 +00:00
android:layout_height="@dimen/tab_height"
android:paddingStart="60dp"
android:paddingEnd="8dp"
app:layout_collapseMode="pin" />
2019-10-01 18:15:06 +00:00
</LinearLayout>
2019-06-03 03:17:20 +00:00
</com.google.android.material.card.MaterialCardView>
2018-09-09 19:44:46 +00:00
</com.google.android.material.appbar.AppBarLayout>
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"
android:layoutAnimation="@anim/layout_animation_fall_down"
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
2019-12-10 17:36:20 +00:00
<LinearLayout
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
2019-12-10 17:36:20 +00:00
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 18:15:06 +00:00
2018-09-09 19:44:46 +00:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>
2018-07-27 13:07:33 +00:00
</LinearLayout>