90 lines
3.3 KiB
XML
90 lines
3.3 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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:cardCornerRadius="32dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="54dp"
|
|
android:layout_height="54dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/default_list_img" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/playing_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#B3000000"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:src="@drawable/playing_small_icon" />
|
|
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<com.offline.music.task.player.ui.view.MarqueeTextView
|
|
android:id="@+id/name"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/medium_font"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/desc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/regular_font"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white_60"
|
|
android:textSize="10sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:id="@+id/stateImg"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="16dp"
|
|
android:src="@drawable/play_main_item_icon"
|
|
android:visibility="gone" />
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |