2015-10-12 07:01:20 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-22 07:43:50 +08:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-12-27 04:54:10 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-06-02 05:56:36 +08:00
|
|
|
android:layout_margin="2dp"
|
2020-04-20 00:08:40 +08:00
|
|
|
android:background="@drawable/library_item_selector"
|
2021-06-12 21:45:26 +08:00
|
|
|
android:foreground="@drawable/library_item_selector_overlay"
|
2020-04-13 10:29:15 +08:00
|
|
|
android:padding="4dp">
|
2015-10-12 07:01:20 +08:00
|
|
|
|
2020-05-04 10:29:09 +08:00
|
|
|
<FrameLayout
|
2020-02-22 07:43:50 +08:00
|
|
|
android:id="@+id/card"
|
2016-04-30 02:00:03 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="220dp"
|
2020-05-04 10:29:09 +08:00
|
|
|
android:background="@drawable/rounded_rectangle">
|
2015-10-14 02:16:15 +08:00
|
|
|
|
2016-04-30 02:00:03 +08:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/thumbnail"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-12 07:08:57 +08:00
|
|
|
android:background="?attr/colorSurface"
|
2021-04-28 20:32:00 +08:00
|
|
|
android:scaleType="centerCrop"
|
2020-02-22 07:43:50 +08:00
|
|
|
tools:ignore="ContentDescription"
|
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2016-03-12 21:22:40 +08:00
|
|
|
|
2016-04-30 02:00:03 +08:00
|
|
|
<View
|
|
|
|
android:id="@+id/gradient"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:background="@drawable/gradient_shape" />
|
2015-10-14 02:16:15 +08:00
|
|
|
|
2021-10-10 05:26:53 +08:00
|
|
|
<include
|
2020-06-14 05:00:32 +08:00
|
|
|
android:id="@+id/badges"
|
2021-10-10 05:26:53 +08:00
|
|
|
layout="@layout/source_grid_item_badges" />
|
2015-11-25 01:45:53 +08:00
|
|
|
|
2020-04-13 10:22:26 +08:00
|
|
|
<TextView
|
2016-01-25 06:41:21 +08:00
|
|
|
android:id="@+id/title"
|
2015-12-27 04:54:10 +08:00
|
|
|
android:layout_width="match_parent"
|
2016-01-10 01:23:38 +08:00
|
|
|
android:layout_height="wrap_content"
|
2016-04-30 02:00:03 +08:00
|
|
|
android:layout_gravity="bottom"
|
2016-01-25 06:41:21 +08:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:padding="8dp"
|
2021-06-20 03:45:16 +08:00
|
|
|
android:shadowColor="@color/md_black_1000"
|
2016-01-25 06:41:21 +08:00
|
|
|
android:shadowDx="0"
|
|
|
|
android:shadowDy="0"
|
|
|
|
android:shadowRadius="4"
|
2021-10-04 00:32:04 +08:00
|
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
|
|
android:textSize="12sp"
|
2020-04-19 23:13:04 +08:00
|
|
|
android:textColor="@color/md_white_1000"
|
2020-02-22 07:43:50 +08:00
|
|
|
tools:text="Sample name" />
|
2015-10-14 02:16:15 +08:00
|
|
|
|
2020-12-27 00:24:10 +08:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2017-02-05 02:07:06 +08:00
|
|
|
android:id="@+id/progress"
|
2021-06-20 03:45:16 +08:00
|
|
|
style="@style/Widget.Tachiyomi.CircularProgressIndicator.Small"
|
2017-02-05 02:07:06 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_gravity="center"
|
2020-12-27 00:24:10 +08:00
|
|
|
android:indeterminate="true"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:visibility="gone" />
|
2017-02-05 02:07:06 +08:00
|
|
|
|
2020-05-04 10:29:09 +08:00
|
|
|
</FrameLayout>
|
2015-10-14 02:16:15 +08:00
|
|
|
|
2020-01-06 00:29:27 +08:00
|
|
|
</FrameLayout>
|