Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Coroutines
- TEST
- textview
- Navigation
- LifeCycle
- data
- textfield
- 테스트
- Button
- 계측
- Dialog
- ScrollView
- 앱바
- appbar
- DART
- binding
- Flutter
- livedata
- scroll
- Compose
- drift
- android
- 앱
- CustomScrollView
- tabbar
- activity
- viewmodel
- 안드로이드
- intent
- Kotlin
Archives
- Today
- Total
목록start (1)
Study Record
[안드로이드] Activity 시작하기
😶 Activity 시작하기 Android 에서 새로운 Activity 를 시작하려면 startActivity 함수를 사용한다. 이 함수에는 Intent 를 매개 변수로 받는데 Intent 에는 새로 시작할 Activity 에 대한 정보와 따로 전달할 데이터를 포함한다. val intent = Intent(context, DetailActivity::class.java).apply { putExtra("INTENT_DATA_STR", "test value"), putExtra("INTENT_DATA_INT", 4) } context.startActivity(intent) 😶 Activity 에서 데이터 받기 Activity 를 시작할 때 intent 의 putExtra 함수로 데이터를 전달했다. 이 데이..
안드로이드
2023. 7. 20. 16:34