본문 바로가기

전체 글346

[2021.11.23] How to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity? [2021.11.23] How to solve Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity? 이번 게시글은 아래와 같은 에러가 발생했을 때 해결하는 방법에 대해 알아 보도록 하자. Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity 해결 방법 -> AVD 를 실행 시켰을 때 RUN 또는 Logcat을 보고 에러를 잡으면 됨. -> 위의 사진을 보면 Caused by ~ 아래 부터 .. 2021. 11. 23.
[2021.11.23] How to use progressbar on android?(loading screen page) [2021.11.23] How to use progressbar on android?(loading screen page) 이번 게시글은 프로그래스바를 이용해서 안드로이드 스튜디오에 로딩화면 페이지를 만드는 방법에 대해 알아보도록 하자. 목차 1. 해당 프로젝트에 빈 프로젝트로 SplashScreen 만들기 (파일명 : ActivitySplashScreen.kt) 2. XML 테마 만들기 3. androidManifest.xml 에서 intent-filter 위치 옮기기 -------------------------------------------------------------------------------------------------------------------------------- 1. .. 2021. 11. 23.
[2021.11.23] How to solve missing constraints in constraintlayout on android? [2021.11.23] How to solve missing constraints in constraintlayout on android? 이번 게시글은 안드로이드에서 missing constraints in constraintlayout 에러가 발생 했을 때 해결하는 방법에 대해 알아 보도록 하자. 에러 원인 -> xml을 보면 밑줄이 쳐져 있는데, 아래와 같은 코드를 입력해주면 해결 된다. 해결 방법 app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf.. 2021. 11. 23.
[2021.11.23] How to solve invalid vcs root mapping on android? [2021.11.23] How to solve invalid vcs root mapping on android? 이번 게시글은 안드로이드 스튜디오에서 invalid vcs root mapping 같은 에러가 발생했을 때 해결 하는 방법에 대해 알아보도록 하자. 1. 해당 오류에서 Configure 클릭 2. Version Control 에서 2번 연필 모양 클릭 3. VCS 가 초반 Default 값으로 Git -> 으로 수정 후 OK 4. Apply -> OK 2021. 11. 23.
[2021.11.16]How to change background color of the button on Android? [2021.11.16] How to change background color of the button on Android? 이번 게시글은 안드로이드에서 버튼 배경색을 변경하는 방법에 대해 알아보도록 하자. 방법은 간단하다. res -> layout -> activity_main.xml * android:backgroundTint="#000000" 로 설정해주면 된다. (android:background="#000000" 변경해도 변경 안됨) 2021. 11. 16.
[2021.11.02] How to solve error This view is not constrained on andorid? [2021.11.02] How to solve error This view is not constrained on andorid? This view is not constrained. It only has designtime positions, so it will jump to (0,0) at runtime unless you add the constraints 이번 게시글은 안드로이드에서 빌드를 했을 때, activitymain.xml 에서 위와 같은 에러메세지가 발생 했을 때 해결하는 방법에 대해 알아보자. 해결방법 -> 버튼에서 에러가 발생했기 때문에 버튼을 클릭하고, Infer Constraints 클릭 2021. 11. 2.