카메라를 호출 하는 intent
intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(PATH);
startActivityForResult(intent, REQ_CODE_CAPTURE_NEW_PICTURE);
여기서 주의 할 점은 android.provider.MediaStore.EXTRA_OUTPUT
주면 onActivityResult의 intent 가 null
안주면 onActivityResult에 bitmap 인 intent.getExtras().get("data")가 반환된다.
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
java.lang.UnsupportedOperationException (0) | 2014.01.06 |
---|---|
[android] Kitkat 에서 바뀐 내용들.. (0) | 2013.12.05 |
[android] google analytics 에 대해 알게 된 것들. (0) | 2013.10.07 |
[android] google Analytics (0) | 2013.10.06 |
[android] listView의 touch 순서를 바꾸고자 할때 (0) | 2013.10.01 |