[Android] Constraint Left vs Start , Right vs End
2022. 3. 11. 10:34ㆍ모바일/Android_Java
ㅇㅇㅇ
Start = Left
End = Right
but
버튼3 | |
버튼1 | 버튼2 |
버튼을 이렇게 배치하고 싶을 때
app:layout_constraintEnd_toEndof = "@+id/버튼2"
app:layout_constraintStart_toStartof = "@+id/버튼1"
or
app:layout_constraintRight_toRightof = "@+id/버튼2"
app:layout_constraintLeft_toLeftof = "@+id/버튼1"
이렇게 설정하면 되는데
app:layout_constraintRight_toRightof = "@+id/버튼2"
app:layout_constraintStart_toStartof = "@+id/버튼1"
이렇게 섞어서 사용하면 안된다.
'모바일 > Android_Java' 카테고리의 다른 글
[Android] 생명주기 복습 (0) | 2022.03.07 |
---|---|
[Android] ViewModel clear(초기화) 및 데이터가있는 livedata duplicate observe (0) | 2022.02.23 |
[Android] 특수문자 제거 (0) | 2022.02.16 |
[Android] TabLayoutMediator (tabselectedListener not call + viewPager not changed) (0) | 2022.01.07 |
[Android] CheckBox CompoundButton.OnCheckChangeListener not working first call (0) | 2021.12.23 |