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

58 lines
2.2 KiB
XML
Raw Normal View History

2018-11-05 13:53: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">
<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">
<fragment
android:id="@+id/playerAlbumCoverFragment"
2019-04-20 05:29:45 +00:00
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_album_full_cover" />
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
<fragment
android:id="@+id/playbackControlsFragment"
2019-04-20 05:29:45 +00:00
android:name="code.name.monkey.retromusic.fragments.player.fit.FitPlaybackControlsFragment"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout="@layout/fragment_player_playback_controls" />
</FrameLayout>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0">
2019-09-29 08:37:57 +00:00
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/playerToolbar"
2018-12-04 15:34:26 +00:00
style="@style/Toolbar"
2018-11-05 13:53:07 +00:00
android:layout_gravity="bottom"
2019-06-23 17:07:33 +00:00
android:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp"
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black_24dp" />
2018-11-05 13:53:07 +00:00
</FrameLayout>
</LinearLayout>
<include layout="@layout/shadow_statusbar_toolbar" />
</FrameLayout>