- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[안드로이드] 외부Activity ,Service 호출 본문
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("패키지명", "클래스"));
startService(intent);
//또는
startService(Activity);
일단 갤러리에서 사진 선택하기
Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, 1);
[출처] http://blog.naver.com/PostView.nhn?blogId=p14406&logNo=120175548285
'★─Programing > ☆─Android' 카테고리의 다른 글
[안드로이드] getBaseContext()와 getApplicationContext()의 차이 (0) | 2013.05.21 |
---|---|
[안드로이드] android - proguard (0) | 2013.05.21 |
[안드로이드] PowerManager, getWindow() 를 이용한 Screen On / Off (0) | 2013.05.09 |
[안드로이드] 안드로이드에서 특정 하드웨어 유무에 상관없이 배포 가능하도록 AndroidManifest.xml 파일 구성하기 (0) | 2013.05.06 |
[안드로이드] AIDL을 위한 byte[], byteArray의 Parcelable 클래스 구현 (0) | 2013.05.06 |
Comments