Skip to content

Commit

Permalink
#16 [fix] to do 이미지뷰 체크박스로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
2zerozu committed Jul 8, 2022
1 parent 11ac57d commit c659eb3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions app/src/main/res/layout/item_home_to_do.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@
android:layout_height="wrap_content"
android:paddingTop="9dp">

<ImageView
android:id="@+id/iv_home_to_do"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/shape_blue_fill_circle"
<CheckBox
android:id="@+id/cb_home_to_do"
android:layout_width="16dp"
android:layout_height="16dp"
android:background="@drawable/sel_home_to_do_check_box"
android:button="@android:color/transparent"
android:checked="false"
app:layout_constraintBottom_toBottomOf="@id/tv_home_to_do"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@id/tv_home_to_do" />
Expand All @@ -32,7 +34,7 @@
android:textColor="@color/black"
android:textSize="13sp"
android:textStyle="bold"
app:layout_constraintStart_toEndOf="@id/iv_home_to_do"
app:layout_constraintStart_toEndOf="@id/cb_home_to_do"
app:layout_constraintTop_toTopOf="parent"
tools:text="청소기 돌리기" />

Expand Down

0 comments on commit c659eb3

Please sign in to comment.