2019-12-18 12:45:47 +01: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"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 18:03:50 +01:00
|
|
|
android:padding="7dp">
|
2019-12-18 12:45:47 +01:00
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2020-03-11 17:53:15 +01:00
|
|
|
android:id="@+id/outline"
|
2019-12-18 12:45:47 +01:00
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
app:srcCompat="@drawable/circle_contour_bg_light" />
|
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2020-03-11 17:53:15 +01:00
|
|
|
android:id="@+id/background"
|
2019-12-18 12:45:47 +01:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_margin="4dp"
|
2019-12-26 12:09:22 +01:00
|
|
|
android:background="@drawable/circle_background_light" />
|
2019-12-18 12:45:47 +01:00
|
|
|
|
2020-05-15 09:58:37 +02:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2019-12-18 12:45:47 +01:00
|
|
|
android:id="@+id/checkMark"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginRight="4dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:clickable="false"
|
|
|
|
app:srcCompat="@drawable/ic_action_done"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="4dp" />
|
|
|
|
|
|
|
|
</FrameLayout>
|