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 | 31 |
Tags
- java
- function scope
- permission
- RecyclerView
- ConstraintLayout
- ReactDOM
- http
- Git
- ViewGroup
- react
- android
- Anko SQLite
- layout
- .kt
- props
- component
- 안드로이드
- javascript
- cardview
- Anro Coroutines
- RelativeLayout
- linux
- block scope
- LinearLayout
- Retrofit2
- intent
- view
- Eclipse
- Kotlin
- vim
Archives
- Today
- Total
목록serializable (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