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
- function scope
- Retrofit2
- component
- http
- .kt
- permission
- linux
- ViewGroup
- RelativeLayout
- layout
- intent
- react
- android
- view
- block scope
- vim
- ConstraintLayout
- java
- RecyclerView
- Kotlin
- javascript
- Eclipse
- LinearLayout
- 안드로이드
- Anko SQLite
- cardview
- ReactDOM
- Anro Coroutines
- Git
- props
Archives
- Today
- Total
목록Primitive (1)
이것저것 다 개발
[Android] Intent
인텐트(Intent)란?? 액티비티를 포함한 각종 컴포넌트를 동작시키기 위한 매개체 입니다.Intent intent = new Intent(this, BActivity.class);startActivity(intent);위의 간단한 코드처럼 화면을 이동할때도 쓰이지만Intent intent = new Intent(this, BActivity.class);intent.putExtra("key", value);startActivity(intent);이처럼 Activity간 데이터를 전달하는 역할도 합니다. 이때 한가지 의문점으로 AActivity와 BActivity가 실행되면서 각각의 프로세스로 2개가 실행되는데서로 다른 프로세스는 서로의 메모리를 절대 참조할 수 없습니다.하지만 Kernel Space(커널..
Android
2017. 11. 28. 09:04