RetroMusicPlayer/app/src/main/res/layout/fragment_fit.xml

65 lines
2.4 KiB
XML
Raw Normal View History

2018-11-05 19:23:07 +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"
android:clickable="true"
android:focusable="true">
2019-12-05 23:48:54 +05:30
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/colorSurface" />
2018-11-05 19:23:07 +05:30
<LinearLayout
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:layout_weight="1">
2020-08-13 23:18:49 +05:30
<fragment
android:id="@+id/playerAlbumCoverFragment"
2019-04-20 10:59:45 +05:30
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_album_full_cover" />
<include layout="@layout/shadow_statusbar_toolbar" />
2018-11-05 19:23:07 +05:30
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
2020-08-13 23:18:49 +05:30
<fragment
android:id="@+id/playbackControlsFragment"
2019-04-20 10:59:45 +05:30
android:name="code.name.monkey.retromusic.fragments.player.fit.FitPlaybackControlsFragment"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-05-18 01:28:04 +05:30
tools:layout="@layout/fragment_gradient_controls" />
2018-11-05 19:23:07 +05:30
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
2019-09-29 14:07:57 +05:30
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/playerToolbar"
2018-12-04 21:04:26 +05:30
style="@style/Toolbar"
2018-11-05 19:23:07 +05:30
android:layout_gravity="bottom"
2020-07-20 02:30:30 +05:30
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black"
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
2018-11-05 19:23:07 +05:30
</FrameLayout>
</LinearLayout>
<include layout="@layout/shadow_statusbar_toolbar" />
</FrameLayout>