115 lines
No EOL
4.7 KiB
XML
115 lines
No EOL
4.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
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
|
|
android:id="@+id/coordinatorLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1">
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appBarLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="0dp"
|
|
app:elevation="0dp">
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/toolbarContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/toolbar_margin_horizontal"
|
|
android:layout_marginTop="@dimen/toolbar_margin_vertical"
|
|
android:layout_marginEnd="@dimen/toolbar_margin_horizontal"
|
|
android:layout_marginBottom="@dimen/toolbar_margin_vertical"
|
|
app:cardBackgroundColor="?colorSurface"
|
|
app:cardCornerRadius="8dp"
|
|
app:cardElevation="0dp"
|
|
app:cardUseCompatPadding="true"
|
|
app:layout_collapseMode="pin"
|
|
app:strokeColor="?dividerColor"
|
|
app:strokeWidth="1dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
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"
|
|
android:background="?colorSurface"
|
|
app:contentInsetStart="0dp"
|
|
app:contentInsetStartWithNavigation="0dp"
|
|
app:popupTheme="?toolbarPopupTheme"
|
|
app:title="@string/search_hint"
|
|
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>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:layoutAnimation="@anim/layout_animation_fall_down"
|
|
android:scrollbars="none" />
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
android:id="@android:id/empty"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:text="@string/empty"
|
|
android:textAppearance="@style/TextViewNormal" />
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?dividerColor" />
|
|
|
|
<code.name.monkey.retromusic.views.BreadCrumbLayout
|
|
android:id="@+id/breadCrumbs"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/tab_height"
|
|
android:layout_weight="0"
|
|
android:background="?colorSurface"
|
|
android:elevation="6dp"
|
|
android:paddingStart="60dp"
|
|
android:paddingEnd="8dp" />
|
|
</LinearLayout> |