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
- location System
- programmers
- 리사이클러뷰
- NestedScrollView
- ScrollView Child View Height Programmatically
- 데이터바인딩
- dialog fragment
- dialogfragment singleton
- 스크롤뷰 자식 뷰 높이 동적조절
- 레트로핏 MVVM
- 다이얼로그 프래그먼트
- recyclerview
- 레트로핏2
- java
- dialog resize
- viewBinding
- 안드로이드
- Android
- 레트로핏 코틀린
- 뷰바인딩
- DataBinding
- ScrollView with ConstraintLayout
- 프로그래머스
- 다이얼로그 크기조절
- Retrofit Kotlin
- lifecycleScope
- Retrofit with MVVM
- 인텐트란?
- 쉐어드
- 위치정보확인
Archives
- Today
- Total
목록Intent (1)
안드로이드 세계
[Android] Intent란?
안드로이드는 4대 컴포넌트(Activity, Service, Broadcast Receiver, Content Provider)가 있는데, 해당 컴포넌트 간의 작업을 수행하기 위한 메세징 객체를 인텐트(Intent)라고 한다. 기본적인 사용 사례는 다음과 같이 3가지가 있다. 액티비티 시작 startActivity() 서비스 시작 startService(), bindService(), jobScheduler 브로드캐스트 전달 sendBroadcast(), sendOrderedBroadcast() 인텐트 유형으로는 명시적인텐트, 암시적 인텐트가 존재한다. 명시적 인텐트 클래스의 객체나, 컴포넌트 이름을 명시적으로 지정해서 사용하는 것을 말한다. Intent(this@MainActivity, SecondAc..
안드로이드(Android)/이론
2021. 1. 8. 01:26