mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
180 lines
No EOL
7.2 KiB
XML
180 lines
No EOL
7.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
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="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@color/cardColor">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingStart="20dp"
|
|
android:paddingEnd="20dp">
|
|
|
|
<!-- Header -->
|
|
<ImageView
|
|
android:id="@+id/album_cover_image_view"
|
|
android:layout_width="54dp"
|
|
android:layout_height="54dp"
|
|
android:layout_margin="2dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
|
|
|
<TextView
|
|
android:id="@+id/album_title_text_view"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:singleLine="true"
|
|
android:ellipsize="marquee"
|
|
android:marqueeRepeatLimit ="marquee_forever"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:scrollHorizontally="true"
|
|
android:paddingTop="8dp"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="12dp"
|
|
android:text="@string/label_placeholder"
|
|
android:textColor="@color/titleTextColor"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/album_cover_image_view"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<TextView
|
|
android:id="@+id/album_artist_text_view"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:paddingStart="12dp"
|
|
android:text="@string/label_placeholder"
|
|
android:textColor="@color/subtitleTextColor"
|
|
android:textSize="12sp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@+id/album_cover_image_view"
|
|
app:layout_constraintTop_toBottomOf="@+id/album_title_text_view" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/option_linear_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="12dp">
|
|
|
|
<TextView
|
|
android:id="@+id/play_radio_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Avvia radio"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:paddingStart="20dp"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/play_random_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Riproduzione casuale"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/play_next_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Riproduci dopo"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/add_to_queue_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Aggiungi alla coda"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/download_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Scarica"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/add_to_playlist_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Aggiungi alla playlist"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/go_to_artist_text_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="12dp"
|
|
android:paddingBottom="12dp"
|
|
android:text="Vai all'artista"
|
|
android:paddingStart="20dp"
|
|
android:fontFamily="@font/open_sans_font_family"
|
|
android:textFontWeight="700"
|
|
android:textSize="14dp"
|
|
android:textColor="@color/titleTextColor"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"/>
|
|
</LinearLayout>
|
|
</LinearLayout> |