56 lines
No EOL
2.5 KiB
XML
56 lines
No EOL
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
~ Copyright (c) 2020 Hemanth Savarala.
|
|
~
|
|
~ Licensed under the GNU General Public License v3
|
|
~
|
|
~ This is free software: you can redistribute it and/or modify it under
|
|
~ the terms of the GNU General Public License as published by
|
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
|
~
|
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
~ See the GNU General Public License for more details.
|
|
-->
|
|
<com.google.android.material.card.MaterialCardView 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="128dp"
|
|
android:layout_height="128dp"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardUseCompatPadding="true">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:id="@+id/paletteColorContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/artist_card_gradient_effect">
|
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="16dp"
|
|
app:civ_border_width="0dp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
tools:src="@tools:sample/avatars" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textStyle="bold"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="@+id/image"
|
|
app:layout_constraintTop_toBottomOf="@+id/image"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</com.google.android.material.card.MaterialCardView> |