반응형
spread
<include
android:id="@+id/habit_repeat_setting_dayofweek_sunday"
layout="@layout/habit_repeat_dayofweek_card"
android:layout_width="40dp"
android:layout_height="40dp"
app:dayOfWeek="@{DayOfWeek.SUNDAY}"
app:isSelected="@{parentVm.habit.dayOfWeek.contains(DayOfWeek.SUNDAY)}"
app:layout_constraintEnd_toStartOf="@+id/habit_repeat_setting_dayofweek_monday"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:listener="@{parentVm}" />
spread_inside
<include
android:id="@+id/habit_repeat_setting_dayofweek_sunday"
layout="@layout/habit_repeat_dayofweek_card"
android:layout_width="40dp"
android:layout_height="40dp"
app:dayOfWeek="@{DayOfWeek.SUNDAY}"
app:isSelected="@{parentVm.habit.dayOfWeek.contains(DayOfWeek.SUNDAY)}"
app:layout_constraintEnd_toStartOf="@+id/habit_repeat_setting_dayofweek_monday"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:listener="@{parentVm}" />
반응형
'프로그래밍 > App 개발' 카테고리의 다른 글
[Android] ConcatAdapter onBindViewHolder 여러번 호출되는 현상 (1) | 2024.01.05 |
---|---|
[Android] POST_NOTIFICATIONS Permission 작동 안하는 문제 (dialog not showing) (1) | 2023.11.23 |
[Android] GitHub Actions CI/CD (0) | 2023.11.14 |
[Android] 버저닝 정책 (1) | 2023.11.03 |
[Android] File templates (BottomSheet) (1) | 2023.11.02 |