본문 바로가기
시작하는 개발 노트/개발 오류 모음

안드로이드-This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints

by 개발하는언니 2021. 9. 18.

안드로이드 스튜디오 사용중 layout xml 파일 중 하나에 

 

위  Text 아이템을 드래그하여 올려놓았더니

 

위와 같은 오류가 났다.

"This view is not constrained. It only has designtime positions,

so it will jump to (0,0) at runtime unless you add the constraints"

추가된 버튼이나 텍스트뷰어가 연결된 곳이 없어 제약조건이 없는 한 좌표를 0, 0 으로 강제 이동 시킨다는말이다.

 

이를 간단히 해결하기 위해서는 

 

오류가 나는 버튼이나 텍스트뷰어(①)를 클릭 후  Infer Constraints버튼(②)를 클릭하면 된다.

 

변경 전 변경 후

위 표와 같이 constraint항목이 추가된 것을 확인 할 수 있다.

 

와우!!!!!!!!!!!

댓글