Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
2022 Compose Camp : Beginner - Unit. 1
Search
dogdduddy
October 27, 2022
Programming
0
580
2022 Compose Camp : Beginner - Unit. 1
2022 Compose Camp : Beginner
CodeLab Unit. 1
Additional explanation video
with DevFest
dogdduddy
October 27, 2022
Tweet
Share
More Decks by dogdduddy
See All by dogdduddy
Computer Engineering Career Mentoring
dogdduddy
0
180
Graduation products
dogdduddy
0
46
Other Decks in Programming
See All in Programming
Claude Codeセッション現状確認 2026福岡 / fukuoka-aicoding-00-beacon
monochromegane
4
440
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
200
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
410
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
300
Linux Kernelの1文字のミスで 権限昇格ができた話
rqda
0
1.7k
ロボットのための工場に灯りは要らない
watany
11
3k
GoのDB アクセスにおける 「型安全」と「柔軟性」の両立 - Bob という選択肢
tak848
0
210
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
1k
Vuetify 3 → 4 何が変わった?差分と移行ポイント10分まとめ
koukimiura
0
150
Takumiから考えるSecurity_Maturity_Model.pdf
gessy0129
1
150
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
570
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
160
Featured
See All Featured
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
160
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
250
Information Architects: The Missing Link in Design Systems
soysaucechin
0
830
Why Your Marketing Sucks and What You Can Do About It - Sophie Logan
marketingsoph
0
110
The State of eCommerce SEO: How to Win in Today's Products SERPs - #SEOweek
aleyda
2
9.9k
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
340
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Balancing Empowerment & Direction
lara
5
950
Mind Mapping
helmedeiros
PRO
1
120
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
Highjacked: Video Game Concept Design
rkendrick25
PRO
1
320
Transcript
This work is licensed under the Apache 2.0 License Compose
Camp Unit 1. 첫 번째 Android 앱 전병선 GDSC Daejin Core
This work is licensed under the Apache 2.0 License Unit
1. 첫 번째 Android 앱 Compose 사용 시 알아야 하는 Android 기본사항
This work is licensed under the Apache 2.0 License 재사용
가능한 소스 코드, 텍스트의 작은 부분 간단하게 코드의 일부분을 발췌한 것 스니펫
This work is licensed under the Apache 2.0 License Kotlin을
사용한 첫 프로그램 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Kotlin
코드를 컴퓨터가 이해할 수 있는 언어로 바꾸어주는 번역기 Page 4. 컴파일러 Kotlin을 사용한 첫 프로그램
This work is licensed under the Apache 2.0 License Y
= 2X + 3 Page 5. 함수 Kotlin을 사용한 첫 프로그램 X = 1, Y = 5
This work is licensed under the Apache 2.0 License Page
5. 함수 정의 Kotlin을 사용한 첫 프로그램 규격에 맞춰 함수의 기능을 코드로 작성
This work is licensed under the Apache 2.0 License Page
5. 함수 본문 Kotlin을 사용한 첫 프로그램 fun 키워 함수 이름 소괄호 중괄호
This work is licensed under the Apache 2.0 License Kotlin에서
변수 만들기 및 사용하기 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Page
2. 리터럴 Kotlin에서 변수 만들기 및 사용하기 컴퓨터에서 사용되는 고정 된 값을 대표하는 용어
This work is licensed under the Apache 2.0 License Page
2. 리터럴 Kotlin에서 변수 만들기 및 사용하기 상수 vs 리터럴 Const Literal
This work is licensed under the Apache 2.0 License Page
4. val 과 var Kotlin에서 변수 만들기 및 사용하기 변수 선언 키워드 val과 var 그리고 값의 수정 Val cannot be reassigned
This work is licensed under the Apache 2.0 License Page
4. val 과 var Kotlin에서 변수 만들기 및 사용하기 Val friendArray = 민수 병선 재민 민수 병선 규현 Jim Haary Jason Rocoli Complete Error
This work is licensed under the Apache 2.0 License Kotlin에서
함수 만들기 및 사용하기 Kotlin 프로그래밍 소개
This work is licensed under the Apache 2.0 License Page
2. 함수 호출 Kotlin에서 함수 만들기 및 사용하기 정의된 함수를 사용하기 위해 부르는 행위
This work is licensed under the Apache 2.0 License Page
5. 매개변수 Kotlin에서 함수 만들기 및 사용하기 함수를 호출할 때 값 전달 에 사용되는 변수
This work is licensed under the Apache 2.0 License 첫
번째 Android 앱 만들기 Android 스튜디오 설정
This work is licensed under the Apache 2.0 License Page
5. MainActivity.kt 첫 번째 Android 앱 만들기 Kt 확장자 Kotlin Class / File 확장자 Activity 안드로이드 화면을 구성하 는 기본 단위
This work is licensed under the Apache 2.0 License Page
5. @ Annotation 첫 번째 Android 앱 만들기 컴파일러에게 정보를 제공하거나, 실행 시 특정 코드를 생성해주는 주석
This work is licensed under the Apache 2.0 License Unit
1. 첫 번째 Android 앱 shutterstock.com - 2094254767
감사합니다. Thank you This work is licensed under the Apache
2.0 License