PlayerAndroid/app/src/main/res/layout-land/fragment_material.xml

76 lines
3.0 KiB
XML
Raw Normal View History

2018-08-22 17:54:07 +00:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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:clickable="true"
android:focusable="true">
<include layout="@layout/shadow_statusbar_toolbar" />
<LinearLayout
2018-08-22 17:54:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/status_bar" />
</FrameLayout>
2018-08-22 17:54:07 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2018-08-22 17:54:07 +00:00
<code.name.monkey.retromusic.views.HeightFitSquareLayout
2018-08-22 17:54:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent">
2018-08-22 17:54:07 +00:00
<fragment
android:id="@+id/playerAlbumCoverFragment"
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_album_cover" />
</code.name.monkey.retromusic.views.HeightFitSquareLayout>
2018-08-22 17:54:07 +00:00
<LinearLayout
android:layout_width="match_parent"
2018-11-05 13:53:07 +00:00
android:layout_height="match_parent"
android:orientation="vertical">
2018-08-22 17:54:07 +00:00
<FrameLayout
2018-08-22 17:54:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1">
2018-08-22 17:54:07 +00:00
<fragment
android:id="@+id/playbackControlsFragment"
android:name="code.name.monkey.retromusic.fragments.player.material.MaterialControlsFragment"
2018-08-22 17:54:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_material_playback_controls" />
</FrameLayout>
2018-08-22 17:54:07 +00:00
<FrameLayout
2018-08-22 17:54:07 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEToolbar
android:id="@+id/playerToolbar"
style="@style/Toolbar"
android:layout_gravity="bottom"
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp" />
</FrameLayout>
2018-08-22 17:54:07 +00:00
</LinearLayout>
</LinearLayout>
</LinearLayout>
2018-08-22 17:54:07 +00:00
</FrameLayout>