mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-18 16:15:20 +01:00
19 lines
778 B
XML
19 lines
778 B
XML
|
<?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:id="@+id/volumeFragmentContainer"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="0"
|
||
|
android:paddingStart="8dp"
|
||
|
android:paddingEnd="8dp"
|
||
|
tools:showIn="@layout/fragment_player_playback_controls">
|
||
|
|
||
|
<fragment
|
||
|
android:id="@+id/volumeFragment"
|
||
|
android:name="code.name.monkey.retromusic.ui.fragments.VolumeFragment"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
tools:layout="@layout/fragment_volume" />
|
||
|
</FrameLayout>
|