mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 09:55:20 +01:00
67 lines
2.8 KiB
XML
67 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="96dp"
|
|
app:collapsedTitleTextAppearance="@style/CollapsedTitleAppearance"
|
|
app:expandedTitleGravity="top"
|
|
app:expandedTitleMarginStart="16dp"
|
|
app:expandedTitleMarginTop="48dp"
|
|
app:expandedTitleTextAppearance="@style/ExpandedTitleAppearance"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
app:title="@string/action_settings">
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar48"
|
|
android:title="@string/action_settings"
|
|
app:layout_collapseMode="pin"
|
|
app:navigationIcon="@drawable/ic_close_white_24dp"
|
|
app:title="@string/action_settings">
|
|
|
|
<android.support.design.widget.TabLayout
|
|
android:id="@+id/tabs"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="end"
|
|
app:tabGravity="center"
|
|
app:tabMode="scrollable"
|
|
app:tabTextAppearance="@style/SettingsTabsTextAppearance" />
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
</code.name.monkey.retromusic.views.SansFontCollapsingToolbarLayout>
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/detail_content_frame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
</android.support.design.widget.CoordinatorLayout>
|
|
|