Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 안드로이드
- intent
- Retrofit2
- cardview
- react
- Anro Coroutines
- view
- linux
- component
- http
- Kotlin
- java
- function scope
- ViewGroup
- .kt
- Eclipse
- vim
- ReactDOM
- ConstraintLayout
- javascript
- android
- layout
- RelativeLayout
- permission
- LinearLayout
- block scope
- RecyclerView
- props
- Anko SQLite
- Git
Archives
- Today
- Total
목록Android Studio (1)
이것저것 다 개발
[Kotlin] Kotlin 기초 및 Android에 적용하기
Kotlin 기초 문법과 Android 적용방법입니다.Android Studio 3.x 버전부터 Project 생성시 Kotlin으로 생성가능합니다.Kotlin Project를 생성하게 되면 manifests와 build.gradle에 위와 같이 추가 됩니다.가장 먼저 눈에 띄는 부분인데 MainActivity extends AppCompatActivity 가 아닌MainActivity : AppCompatActivity() 로 만들어졌습니다. 여기서 : 는 extends의 의미로 사용됩니다.그리고 Impliments는 , 로 사용할 수 있습니다.아래에 소스에서 설명할 Kotlin의 간략 설명입니다.val은 Immutable variable 입니다. java의 final 과 같습니다.var 은 mutab..
Android
2017. 12. 11. 11:49