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

58 lines
2.0 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"
android:focusable="true">
<fragment
android:id="@+id/player_album_cover_fragment"
android:name="code.name.monkey.retromusic.ui.fragments.player.PlayerAlbumCoverFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/fragment_player_album_cover" />
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:background="@drawable/shadow_up_full_theme" />
2018-08-30 09:29:30 +00:00
<LinearLayout
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-30 09:29:30 +00:00
android:layout_height="wrap_content"
android:layout_gravity="bottom"
2018-07-27 13:07:33 +00:00
android:orientation="vertical">
2018-08-30 09:29:30 +00:00
<fragment
android:id="@+id/playback_controls_fragment"
android:name="code.name.monkey.retromusic.ui.fragments.player.full.FullPlaybackControlsFragment"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
2018-08-30 09:29:30 +00:00
tools:layout="@layout/fragment_full_player_controls" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<FrameLayout
android:id="@+id/toolbar_container"
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/player_toolbar"
style="@style/Toolbar48"
android:navigationIcon="@drawable/ic_close_white_24dp" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
</FrameLayout>
</LinearLayout>
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<include layout="@layout/status_bar" />
2018-07-27 13:07:33 +00:00
<View
android:layout_width="match_parent"
android:layout_height="72dp"
android:background="@drawable/shadow_down_strong" />
</FrameLayout>