blob: 8bae20b94dad654c9bd30a31f24a25d19aa70fb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent" android:layout_height="match_parent"
>
<View
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/check_view"
android:layout_alignBottom="@+id/check_view"
android:layout_alignLeft="@+id/check_view"
android:layout_alignRight="@+id/check_view"
android:layout_alignStart="@+id/check_view"
android:layout_alignEnd="@+id/check_view"
android:layout_marginTop="8dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="2dp"
android:background="@drawable/cust_checkbox"
/>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/check_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/check_bold"
android:tint="@color/colorSuccess"
android:layout_centerInParent="true"
android:visibility="invisible"
/>
</RelativeLayout>
|