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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="12dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="16dp">
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="0dp"
|
|
android:visibility="visible"
|
|
app:cardCornerRadius="4dp"
|
|
app:cardElevation="0dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:scaleType="centerCrop"
|
|
android:src="@mipmap/musicoo_logo_img" />
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/currentPlayingLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/black_60"
|
|
android:gravity="center"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/playing_small_green_icon" />
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<com.player.musicoo.view.MarqueeTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/regular_font"
|
|
android:maxLines="1"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="14dp" />
|
|
|
|
<com.player.musicoo.view.MarqueeTextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/regular_font"
|
|
android:maxLines="1"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white_60"
|
|
android:textSize="12dp" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout> |