시작하는 개발 노트/개발 오류 모음3 안드로이드-This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints 안드로이드 스튜디오 사용중 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항목이 추가된 것을 확인 할 수 있다. .. 2021. 9. 18. 안드로이드 - 'constructor Handler()' is deprecated. Deprecated in Java Handler() 코드의 deprecated 앞으로 Handler를 사용하기 위해서는 생성자에 Looper를 명시해야 한다. 아래와 같이 에러가 난다면 Looper.getMainLooper()를 Handler 생성자에 넣어주면 된다. 이 Handler() 를 Handler(Looper.getMainLooper()) 위와 같이 수정해 주시면 됩니다 :) 그리고 import android.os.Looper 위 패키지를 임포트 해줍니다 !!! 그럼 사용가능합니다요 !!! 2021. 9. 13. 안드로이드 - A problem was found with the configuration of task.. 안드로이드 스튜디오 설치 후 Run을 실행해 봤는데 아래와 같은 오류가 나왔습니다... A problem was found with the configuration of task ':app:processDebugManifest' (type 'ProcessMultiApkApplicationManifest'). > File 'F:\Application\app\build\intermediates\merged_manifest\debug\out\AndroidManifest.xml' specified for property 'mainMergedManifest' does not exist. 해결할 수 있는 방법은 Gradle Scripts -> build.gradle 에서 변경전 dependencies { class.. 2020. 12. 27. 이전 1 다음