2020-12-27 10:13:13 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout 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"
|
2020-12-29 09:15:32 -05:00
|
|
|
android:layout_width="28dp"
|
|
|
|
android:layout_height="28dp"
|
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
2020-12-27 10:13:13 -05:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/download_icon_border"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-12-29 09:15:32 -05:00
|
|
|
android:padding="2dp"
|
|
|
|
android:scaleType="fitXY"
|
2020-12-27 10:13:13 -05:00
|
|
|
app:srcCompat="@drawable/border_circle"
|
|
|
|
app:tint="@color/material_on_surface_emphasis_medium"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/download_icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-12-29 09:15:32 -05:00
|
|
|
android:padding="4dp"
|
|
|
|
android:scaleType="fitXY"
|
2020-12-27 10:13:13 -05:00
|
|
|
app:srcCompat="@drawable/ic_arrow_downward_24dp"
|
|
|
|
app:tint="@color/material_on_surface_emphasis_medium"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
|
|
|
android:id="@+id/download_progress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:padding="0dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:indicatorColor="@color/material_on_surface_emphasis_medium"
|
|
|
|
app:indicatorInset="0dp"
|
|
|
|
app:indicatorSize="24dp"
|
|
|
|
app:trackThickness="2dp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/downloaded_icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-12-29 09:15:32 -05:00
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:visibility="gone"
|
2020-12-27 10:13:13 -05:00
|
|
|
app:srcCompat="@drawable/ic_check_circle_24dp"
|
|
|
|
app:tint="@color/material_on_surface_emphasis_medium"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
2020-12-27 10:44:08 -05:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/error_icon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-12-29 09:15:32 -05:00
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:visibility="gone"
|
2020-12-27 10:44:08 -05:00
|
|
|
app:srcCompat="@drawable/ic_error_outline_24dp"
|
|
|
|
app:tint="?attr/colorError"
|
|
|
|
tools:ignore="ContentDescription" />
|
2020-12-27 10:13:13 -05:00
|
|
|
|
|
|
|
</FrameLayout>
|