summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/v_simple_checkbox.xml
blob: a552034111ae8dba09ab5d3848860f33cfcb3052 (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
34
35
<?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"
    xmlns:tools="http://schemas.android.com/tools">

    <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"
        tools:viewBindingIgnore="true"
        />
    <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>