78 lines
3.0 KiB
XML
78 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="horizontal"
|
|
android:padding="8dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<!-- Text Section -->
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<!-- First Row: Year and Composition -->
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/text_year"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Year"
|
|
android:textSize="14sp"
|
|
android:textColor="@android:color/darker_gray" />
|
|
|
|
<TextView
|
|
android:id="@+id/text_composition"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Composition"
|
|
android:textSize="14sp"
|
|
android:layout_marginStart="8dp"
|
|
android:textColor="@android:color/darker_gray" />
|
|
</LinearLayout>
|
|
|
|
<!-- Second Row: Title -->
|
|
<TextView
|
|
android:id="@+id/text_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Title"
|
|
android:textSize="16sp"
|
|
android:textColor="@android:color/black"
|
|
android:paddingTop="4dp"/>
|
|
</LinearLayout>
|
|
|
|
<!-- Rechte Seite mit den Buttons -->
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageButton
|
|
android:id="@+id/edit_song_button"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:src="@drawable/edit_24dp_e8eaed_fill0_wght400_grad0_opsz24"
|
|
app:tint="@color/teal_700"
|
|
android:contentDescription="Edit Song"
|
|
android:background="?android:selectableItemBackgroundBorderless" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/delete_song_button"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:src="@drawable/delete"
|
|
app:tint="#FF0000"
|
|
android:contentDescription="Delete Song"
|
|
android:background="?android:selectableItemBackgroundBorderless"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|