RetroMusicPlayer/app/src/main/res/layout-land/fragment_flat_player.xml

67 lines
2.8 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?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"
2022-05-26 23:54:38 +05:30
android:background="?attr/colorSurface"
2018-07-27 18:37:33 +05:30
android:clickable="true"
android:focusable="true"
android:orientation="vertical">
<View
android:id="@+id/colorGradientBackground"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent" />
<include layout="@layout/shadow_statusbar_toolbar" />
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2022-05-26 23:54:38 +05:30
<include layout="@layout/status_bar" />
2018-07-27 18:37:33 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2018-07-27 18:37:33 +05:30
<code.name.monkey.retromusic.views.HeightFitSquareLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/playerAlbumCoverFragment"
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-09-09 19:08:49 +05:30
tools:layout="@layout/fragment_album_flat_cover" />
</code.name.monkey.retromusic.views.HeightFitSquareLayout>
2018-07-27 18:37:33 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2022-05-26 23:54:38 +05:30
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/playerToolbar"
style="@style/Toolbar"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-05-26 23:54:38 +05:30
android:layout_weight="0"
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
2018-07-27 18:37:33 +05:30
<androidx.fragment.app.FragmentContainerView
android:id="@+id/playbackControlsFragment"
android:name="code.name.monkey.retromusic.fragments.player.flat.FlatPlaybackControlsFragment"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1"
tools:layout="@layout/fragment_flat_player_playback_controls" />
2018-07-27 18:37:33 +05:30
</LinearLayout>
</LinearLayout>
</LinearLayout>
2018-07-27 18:37:33 +05:30
</FrameLayout>