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
- stylesheet
- React
- TypeScript
- Android
- GoogleMaps
- 코틀린
- Kotlin
- JS
- scrollview
- 랜덤번호
- Java
- TextView
- RecyclerView
- 자바스크립트
- fragment
- 리액트
- 오버라이딩
- array
- nodejs
- 랜덤넘버
- button
- Javscript
- Linux
- Hook
- npm
- 구글맵스
- 안드로이드
- SpringBoot
- 스프링부트
- JavaScript
Archives
- Today
- Total
목록Parcel (1)
타닥타닥 개발자의 일상
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/baTc5t/btrs0LhnUAh/aWII3QWengMyD6k4Rr9pWk/img.png)
폴더 및 파일 구성 1. 새로 만들기 > Activity > EmptyActivity 이용해서 SecondActivity 만들기 2. Student라는 클래스 만들기 activity_main.xml activity_second.xml Student.kt package com.example.sample34 import android.os.Parcel import android.os.Parcelable class Student(var name:String?,var count:Int, var level:String?) : Parcelable{ constructor(parcel: Parcel):this(parcel.readString(),parcel.readInt(),parcel.readString()){ } ..
코딩 기록/Kotlin
2022. 2. 10. 22:09