1. 자바 설치 후 진행 - https://hwihyeon.tistory.com/9 2. 이클립스 설치 - Eclipse IDE for Enterprise Java and Web Developers 설치 - 이클립스 설치 후 Work Space는 임의로 지정 - https://www.eclipse.org/downloads/ Eclipse Downloads | The Eclipse Foundation The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 415 open source projects, including runtimes, tools and frameworks. www.eclipse.org..
1. JAVA 설치 - 아래의 홈페이지에서 다운로드 후 설치 - 파일명에 JRE가 들어가 있는 폴더가 java 설치 폴더이다. - https://www.java.com/ko/ 2. JDK(Java Development Kit) 설치 - 상업적으로 사용 시 무료, 유료 버전 구분 필요 (1.8.202 이후는 유료 버전) - https://www.oracle.com/kr/java/technologies/javase/jdk11-archive-downloads.html 3. 환경설정 - 내 PC > 마우스 우클릭 (속성) > 고급 시스템 설정 > 환경 변수 - 1 ) 시스템 변수 > 새로 만들기 : JAVA_HOME / JDK 설치 경로 입력 - java 경로 설정 - 2 ) 시스템 변수 > 새로 만들기 : C..
1. Firebase 회원가입 필요 - 도움말 : 안드로이드 스튜디오 상단 > Tool > Firebase > Cloud Messaging - 참조 : https://hwihyeon.tistory.com/4 Google firebase_안드로이드 사용방법 1. 구글 로그인 후 아래 사이트 접속 - https://firebase.google.com/?hl=ko Firebase Firebase는 고품질 앱을 빠르게 개발하고 비즈니스를 성장시키는 데 도움이 되는 Google의 모바일 플랫폼입니다. firebase... hwihyeon.tistory.com 2. 1번 사항 완료 후 dependecies 설정 추가 - build.gradle (Module: app) implementation 'com.google..
1. Activity에서 Class 정의 - 구현이 단순한 관계로 설명없이 소스 서술 NotificationManager topMsgManager; NotificationCompat.Builder topMsgBuilder; private static String CHANNEL_ID = "test_app_topNotice"; private static String CHANEL_NAME = "test_app_topNotice"; 2. 알림창을 띄울 함수 정의 public void showTopNotice() { topMsgBuilder = null; topMsgManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); //CHANNEL_I..
1. 다이얼로그 레이아웃 생성 - 기본적으로 사용할 다이얼로그 레이아웃(확인 및 경고 알림)을 생성한다. - layout > dialog_confirm.xml - layout > dialog_alert.xml 2. 버튼 클릭 시 클릭 모션 생성 - 버튼 클릭 시 해당 클릭을 제대로 인지하기 위한 모션을 생성해준다. - 색상 : values > colors.xml 별도 정의 #FFFFFF #7C7C7C - drawable > btn_click_base.xml 3. 테스트할 다이얼로그를 띄울 버튼을 생성한다. - MainActivity layout에 버튼 생성 - layout > activity_main.xml 4. 커스텀 다이얼로그 class 생성 - Activity에 선언해도 되지만 유지보수 및 기독성을..