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

121 lines
4.8 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-08 08:03:38 +00:00
<FrameLayout
2018-08-05 16:35:09 +00:00
android:layout_width="match_parent"
2018-08-08 08:03:38 +00:00
android:layout_height="wrap_content"
android:elevation="0dp"
tools:ignore="UnusedAttribute">
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
<include layout="@layout/status_bar" />
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
</FrameLayout>
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-05 16:35:09 +00:00
tools:ignore="UnusedAttribute">
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-08 08:03:38 +00:00
app:layout_scrollFlags="scroll|enterAlwaysCollapsed"
app:titleEnabled="false">
<View
android:layout_width="match_parent"
android:layout_height="48dp"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_collapseMode="pin">
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="48dp" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/Toolbar48"
tools:ignore="UnusedAttribute">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:id="@+id/title"
fontPath="@string/circular_std_black"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/folders"
android:textAppearance="@style/TextAppearance.AppCompat.Large"
tools:ignore="MissingPrefix" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
</FrameLayout>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-07-27 13:07:33 +00:00
2018-08-08 08:03:38 +00:00
<com.simplecityapps.recyclerview_fastscroll.views.FastScrollRecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:layoutAnimation="@anim/layout_animation_fall_down"
android:scrollbars="none" />
<TextView
android:id="@android:id/empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/empty"
android:textColor="?android:textColorSecondary"
android:textSize="@dimen/empty_text_size" />
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
</FrameLayout>
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
</android.support.design.widget.CoordinatorLayout>
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?dividerColor" />
2018-08-05 16:35:09 +00:00
2018-08-08 08:03:38 +00:00
<code.name.monkey.retromusic.views.BreadCrumbLayout
android:id="@+id/bread_crumbs"
android:layout_width="match_parent"
android:layout_height="@dimen/tab_height"
android:layout_weight="0"
android:elevation="6dp"
android:paddingStart="60dp"
android:paddingEnd="8dp" />
2018-07-27 13:07:33 +00:00
</LinearLayout>