프로그래밍245 코틀린 코딩 연습 코틀린 문법 연습을 하고 싶은데 검색하다 보면 화면의 textview를 변경하는 방법같은것만 나오고 println을 사용하는것처럼 그냥 기본적인 코딩 연습을 하는것은 없는지 찾다가 겨우 찾아냈다. REPL 과 Scarcth인데 REPL은 한줄단위로 코드를 실행할때 사용하고 Scratch는 복잡한 코드를 실행할때 사용한다 File - New - ScratchFile 을 클릭하면 간단한 코드를 연습할수있는 창이 나온다. https://play.kotlinlang.org/#eyJ2ZXJzaW9uIjoiMS41LjAiLCJwbGF0Zm9ybSI6ImphdmEiLCJhcmdzIjoiIiwianNDb2RlIjoiIiwibm9uZU1hcmtlcnMiOnRydWUsInRoZW1lIjoiaWRlYSIsImNvZGUiOi.. 2021. 6. 7. [Android] View Binding 안드로이드 Binding을 사용하기 위해서는 app단의 build.gradle에서 아래 코드를 추가해준다. // Android Gradle Plugin Version 4.0 이후 android { ... buildFeatures { viewBinding true } ... } // Android Gradle Plugin Version 4.0 이전 android { ... viewBinding { enabled = true } ... } Android Gradle Plugin Version 확인은 File - Project Structure 에서 확인 할 수 있다. 더보기 아래 코드는 ActivityMain.xml의 버튼을 클릭하면 이벤트가 발생하는 코드의 예시이다. // 예시 코드 class MainAc.. 2021. 6. 2. 톰캣 설치 현재 톰캣은 10까지 있다고 하지만 10은 베타버전이라고 한다. 해당 포스트에서는 톰캣 9을 설치 하겠다. https://tomcat.apache.org/download-90.cgi Apache Tomcat® - Apache Tomcat 9 Software Downloads Welcome to the Apache Tomcat® 9.x software download page. This page provides download links for obtaining the latest version of Tomcat 9.0.x software, as well as links to the archives of older releases. Unsure which version you need? Specificat.. 2021. 5. 30. Eclipse 설치 https://www.eclipse.org/photon/ Eclipse Photon | The Eclipse Foundation The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 375 open source projects, including runtimes, tools and frameworks. www.eclipse.org 해당 링크에 들어간후 Other Package Downloads 클릭 Eclipse IDE for Java EE Developers에서 운영체제에 맞는 파일 클릭 압축을 푼 후에 eclipse.exe를 클릭하면 이클립스가 실행된다. 2021. 5. 30. 이전 1 ··· 55 56 57 58 59 60 61 62 다음