2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-05-12 03:54:09 +05:30
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
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"
|
2021-12-07 22:08:32 +05:30
|
|
|
android:background="?attr/colorSurface"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
2019-12-05 23:48:54 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
<include layout="@layout/shadow_statusbar_toolbar" />
|
|
|
|
|
2022-05-26 23:54:38 +05:30
|
|
|
<include layout="@layout/status_bar" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-05-12 03:54:09 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/titleContainer"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:clickable="false"
|
2020-05-12 03:54:09 +05:30
|
|
|
android:orientation="vertical"
|
2022-05-26 23:54:38 +05:30
|
|
|
android:padding="16dp"
|
2020-05-12 03:54:09 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2022-05-26 23:54:38 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@id/status_bar">
|
2018-11-28 11:07:10 +05:30
|
|
|
|
2020-05-12 03:54:09 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-05-12 03:54:09 +05:30
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:text="Title" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2020-05-12 03:54:09 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-05-12 03:54:09 +05:30
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:clickable="true"
|
2020-05-12 03:54:09 +05:30
|
|
|
android:ellipsize="end"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:focusable="true"
|
2020-05-12 03:54:09 +05:30
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
tools:text="Text" />
|
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-16 18:29:31 +05:30
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2020-05-12 03:54:09 +05:30
|
|
|
android:id="@+id/playerAlbumCoverFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.PlayerAlbumCoverFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHeight_percent="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/titleContainer" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2021-09-16 18:29:31 +05:30
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2020-05-12 03:54:09 +05:30
|
|
|
android:id="@+id/playbackControlsFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.player.plain.PlainPlaybackControlsFragment"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/playerToolbar"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/playerAlbumCoverFragment"
|
|
|
|
tools:layout="@layout/fragment_player_playback_controls" />
|
2018-11-28 11:07:10 +05:30
|
|
|
|
2020-05-12 03:54:09 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/playerToolbar"
|
|
|
|
style="@style/Toolbar"
|
2022-05-26 23:54:38 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2020-05-12 03:54:09 +05:30
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/playbackControlsFragment"
|
2020-07-20 02:30:30 +05:30
|
|
|
app:navigationIcon="@drawable/ic_keyboard_arrow_down_black" />
|
2020-05-12 03:54:09 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|