mirror of
https://github.com/rebelonion/Dantotsu.git
synced 2026-01-23 13:31:02 +00:00
53 lines
2.1 KiB
XML
53 lines
2.1 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"
|
|
android:layout_marginVertical="16dp"
|
|
android:layout_marginHorizontal="8dp"
|
|
android:orientation="horizontal"
|
|
tools:ignore="UseCompoundDrawables">
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:id="@+id/subscriptionCoverContainer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start|center_vertical"
|
|
android:layout_margin="16dp"
|
|
android:layout_marginStart="16dp"
|
|
android:backgroundTint="@color/bg_white"
|
|
app:cardCornerRadius="16dp"
|
|
app:strokeColor="@color/transparent">
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
android:id="@+id/subscriptionCover"
|
|
android:layout_width="108dp"
|
|
android:layout_height="160dp"
|
|
android:layout_gravity="center"
|
|
android:scaleType="centerCrop"
|
|
tools:ignore="ContentDescription,ImageContrastCheck"
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic"
|
|
tools:tint="@color/transparent" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
<TextView
|
|
android:id="@+id/subscriptionName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/poppins_semi_bold"
|
|
android:text="@string/placeholder"
|
|
android:textSize="16sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/deleteSubscription"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginEnd="8dp"
|
|
android:contentDescription="@string/delete"
|
|
android:src="@drawable/ic_round_close_24"
|
|
app:tint="?attr/colorOnBackground" />
|
|
|
|
</LinearLayout> |