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 | 29 | 30 |
Tags
- Git
- react
- http
- vim
- Kotlin
- function scope
- view
- block scope
- android
- RecyclerView
- ViewGroup
- ReactDOM
- intent
- Anro Coroutines
- Retrofit2
- Eclipse
- Anko SQLite
- java
- ConstraintLayout
- cardview
- layout
- javascript
- RelativeLayout
- linux
- permission
- props
- .kt
- component
- 안드로이드
- LinearLayout
Archives
- Today
- Total
목록mutable (1)
이것저것 다 개발
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