본문 바로가기

App24

[2021.11.23] How to change logcat color on Android? [2021.11.23] How to change logcat color on Android? 이번 게시글은 Logcat(로그캣) 에서 에러 레벨에 따라 색깔을 변경하는 방법에 대해 알아보도록 하자. 목차 1. 설정 들어가기 (컨트롤+알트+S) 또는 file > Settings 클릭 2. 설정 검색 창에 logcat 검색 3. Inherit values from 체크 해제 후 원하는 색상 설정 ------------------------------------------------------------------------------------------------------------------------------- 1. 설정 들어가기 (컨트롤+알트+S) 2. 설정 검색 창에 logcat 검색 -> se.. 2021. 11. 23.
[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.