IT recording...
[Android] missing constraints in constraintlayout 에러, 오류 본문
missing constraints in constraintlayout
xml파일에서 레이아웃 지정 시 width height 다 해줬는데 빨간줄이 뜰 때가 있다.
빨간줄에 마우스 가져다 대면 'missing constraints in constraintlayout' 와 같은 애를 요소로 추가해준다.
이는 이 요소의 위치가 지정이 되지 않았기 때문이다.
(옆에 design 탭에서 하나로 뭉쳐 보이는 것들도 이 같은 이유)
<LinearLayout , 자식들에 weight 잘 쓰고 해서 위치 지정 해주면 해결된다.
**LinearLayout 에서는 orientation 설정 해주는 것 잊지 말자
나는 맨날 까먹어서 뭉쳐 보인다
'Android' 카테고리의 다른 글
[Android] BLE (블루투스 통신) (0) | 2020.09.08 |
---|---|
[안드로이드] AndroidStudio & Git연동 (git 터미널 사용법, gitHub 연동, gitLab연동, SSH) (0) | 2020.09.07 |
[Android] 특정 요소만 테두리 주기,테두리 둥글게, 요소 스타일 각기 다르게 (0) | 2020.08.16 |
[Android] RecyclerView 사용하기 (0) | 2020.08.16 |
[Android] layout_weight 사용하여 정렬하기 (0) | 2020.08.16 |
Comments