12345678910111213141516171819202122232425262728 |
- <androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- app:cardElevation="4dp"
- app:cardCornerRadius="8dp"
- android:layout_marginHorizontal="16dp"
- android:layout_marginVertical="8dp">
- <RelativeLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="8dp">
- <CheckBox
- android:id="@+id/todoCheckBox"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:buttonTint="@color/colorPrimaryDark"
- android:minHeight="48dp"
- android:paddingStart="8dp"
- tools:text="Go to the market and bring vegetables immediately today." />
- </RelativeLayout>
- </androidx.cardview.widget.CardView>
|