mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 09:33:33 +00:00
33 lines
No EOL
1.4 KiB
XML
33 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/player_nested_scroll_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/cardColor"
|
|
app:elevation="8dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.media3.ui.PlayerControlView
|
|
android:id="@+id/player_body_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:controller_layout_id="@layout/player_body_bottom_sheet"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:show_timeout="0"/>
|
|
|
|
<include
|
|
android:id="@+id/player_header_layout"
|
|
layout="@layout/player_header_bottom_sheet"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/bottom_sheet_peek_height"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
</FrameLayout>
|
|
</androidx.core.widget.NestedScrollView> |