96 lines
No EOL
3.7 KiB
XML
96 lines
No EOL
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?rectSelector"
|
|
android:clickable="true"
|
|
android:focusable="true">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/dummy_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="64dp"
|
|
android:orientation="horizontal"
|
|
tools:ignore="MissingPrefix">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/drag_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical|start"
|
|
android:padding="8dp"
|
|
android:visibility="gone"
|
|
app:srcCompat="@drawable/ic_drag_vertical_white_24dp"
|
|
app:tint="?attr/colorControlNormal"
|
|
tools:ignore="ContentDescription"
|
|
tools:visibility="visible" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/imageContainer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/imageText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center"
|
|
android:maxLines="1"
|
|
android:minWidth="36dp"
|
|
android:minHeight="40dp"
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
android:visibility="gone"
|
|
tools:text="1"
|
|
tools:visibility="visible" />
|
|
|
|
</FrameLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/title_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1.0"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
android:textSize="16sp"
|
|
tools:text="Song name" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
|
|
|
|
android:maxLines="1"
|
|
tools:text="Song details" />
|
|
</LinearLayout>
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:id="@+id/menu"
|
|
style="@style/OverFlowButton"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="0"
|
|
app:tint="?attr/colorControlNormal" />
|
|
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
</FrameLayout> |