tempus/app/src/main/res/layout/fragment_player_bottom_sheet.xml

32 lines
1.3 KiB
XML
Raw Normal View History

2020-12-05 21:31:12 +01:00
<?xml version="1.0" encoding="utf-8"?>
2021-04-27 11:05:58 +02:00
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
2020-12-05 21:31:12 +01:00
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">
<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"
2021-04-27 11:05:58 +02:00
app:layout_constraintTop_toTopOf="parent" />
2020-12-05 21:31:12 +01:00
2020-12-08 11:12:44 +01:00
<include
android:id="@+id/player_body_layout"
layout="@layout/player_body_bottom_sheet"
2020-12-05 21:31:12 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
2021-04-27 11:05:58 +02:00
app:layout_constraintTop_toTopOf="parent" />
2020-12-05 21:31:12 +01:00
</FrameLayout>
</androidx.core.widget.NestedScrollView>