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
- onLayout
- 코틀린
- hilt
- lifecycle
- Android
- ViewModel
- 알고리즘
- notification
- Algorithm
- 알림
- kotlin
- CollapsingToolbarLayout
- LiveData
- AppBarLayout
- onMeasure
- CoordinatorLayout
- View
- recyclerview
- sqlite
- Navigation
- activity
- HTTP
- 백준
- room
- CustomView
- 안드로이드
- Coroutine
- Behavior
- DataBinding
- BOJ
Archives
- Today
- Total
목록putExtra (1)
개발일지
Android in A..Z - Intent
Intent Intent는 Android에서 메시지를 전달하는 객체입니다. 주로 Activitiy, Service, Broadcast같은 Android 요소들 사이에서 메시지를 전달하는 역할을 수행합니다. 위 그림은 startActivity를 처리하는 과정입니다. Activity나 Service같은 Android 요소들은 직접 생성해서 사용하는 것이 아닌 Intent를 통해 Android Framework에 요청하여 사용하게 됩니다. 요청할 때 Intent에 데이터를 넣어서 보낼 수 있습니다. 인텐트 유형 명시적 인텐트 : Intent를 처리할 요소를 명시적으로 정하는 방식입니다. Context와 처리할 요소의 정보(패키지명, 클래스 이름)를 명시적으로 정하여 인텐트를 전송합니다. 암시적 인텐트 : In..
Android (안드로이드)
2021. 8. 30. 12:53