Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Java
- Linux
- 쓰레드
- 뮤직비디오
- 브로드케스트 리시버
- Android
- 토익
- 자바
- xml
- Intent
- HTML
- Looper
- 네트워크보안
- 서비스
- error
- 네트워크
- 이클립스
- 레인보우
- TOEIC
- 걸스데이
- 영어
- opencv
- 배다해
- rainbow
- Eclipse
- 엑티비티
- 인텐트
- 안드로이드
- 바닐라루시
- opengl
Archives
- Today
- Total
목록simplecursoradapter (1)
W.A 저장소
Intent란?
간단하게 말하면은 Activity간의 배달역활을 해줄수 있는 그 무엇?? startActivity(myIntent) intent(MyActivity.this, myOtherActivity.class) startActivityForResult 명시적 intent = new intent(this, MyOtherActivity.class) startActivityForResult(intent, SHOW_SUBACTIVITY); 암시적 Uri uri = uri.parse("content://contacts/people"); intent = new Intent(Intent.ACTION_PICK, uri); startActivityForResult(intent, PICK_CONTACT_SUBCTIVITY); 비동기..
Programing
2010. 8. 17. 11:33