constraintlayout(2)
-
[Android] Constraint Left vs Start , Right vs End
ㅇㅇㅇ 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" 이렇게 섞어서 사용하면 안된다.
2022.03.11 -
[Android] textview in ConstraintLayout cutoff(잘림 현상)
텍스트뷰가 자동 줄바뀜이 되지 않고 오른쪽으로 잘리는 현상이 발생할 때 Please add right constraint as well like app:layout_constraintRight_toRightOf="parent" and please set width 0dp like android:layout_width="0dp" 해닥 속성을 추가하여 줍니다!
2021.11.30