mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="@dimen/bottom_sheet_peek_height"
|
||
|
|
android:elevation="2dp"
|
||
|
|
android:background="@color/almostCardColor">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/player_header_button"
|
||
|
|
android:layout_width="42dp"
|
||
|
|
android:layout_height="42dp"
|
||
|
|
android:layout_marginStart="20dp"
|
||
|
|
android:src="@drawable/ic_play"
|
||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_header_song_title_label"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
app:layout_constraintStart_toEndOf="@+id/player_header_button"
|
||
|
|
app:layout_constraintTop_toTopOf="parent"
|
||
|
|
android:text="@string/label_placeholder"
|
||
|
|
android:paddingStart="12dp"
|
||
|
|
android:textColor="@color/titleTextColor"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_header_song_artist_label"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:fontFamily="@font/open_sans_font_family"
|
||
|
|
android:paddingStart="12dp"
|
||
|
|
android:textColor="@color/subtitleTextColor"
|
||
|
|
android:textSize="12sp"
|
||
|
|
android:text="@string/label_placeholder"
|
||
|
|
app:layout_constraintStart_toEndOf="@+id/player_header_button"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/player_header_song_title_label" />
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|