This commit is contained in:
LucasGGamerM 2022-12-12 14:03:44 -03:00
parent 1f51331f67
commit 382a23c0b6
1 changed files with 25 additions and 0 deletions

View File

@ -28,4 +28,29 @@
android:layout_height="match_parent"
android:paddingRight="16dp"/>
<ImageView
android:id="@+id/edit"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="6dp"
android:layout_toStartOf="@id/list_toggle"
android:background="?android:selectableItemBackgroundBorderless"
android:scaleType="center"
android:src="@drawable/ic_fluent_edit_24_regular"
android:tint="?android:textColorSecondary" />
<ImageView
android:id="@+id/delete"
android:layout_width="36dp"
android:layout_height="36dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="6dp"
android:layout_toStartOf="@id/edit"
android:background="?android:selectableItemBackgroundBorderless"
android:scaleType="center"
android:src="@drawable/ic_fluent_delete_24_regular"
android:tint="?android:textColorSecondary" />
</LinearLayout>