반응형
android, video recording duration limit setting. |
From API level 8 ( Froyo ) it works fine.
Intent intent = new Intent( MediaStore.ACTION_VIDEO_CAPTURE );
intent.putExtra( "android.intent.extra.durationLimit" , 5 ); // max 5 sec recording available.
startActivityForResult( intent, 234 );
activity result 의 data 에는 저장된 동영상의 uri 가 전달된다.
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] ThumbnailUtils 요런 녀석 있는 줄 알았삼? (0) | 2014.04.04 |
---|---|
Android 놓치기 쉬운 안드로이드 성능 향상 팁 (0) | 2014.04.03 |
[android] bitmap recycle 사용시 주의사항. (0) | 2014.04.02 |
[android] make screen awake, no sleep (2) | 2014.04.01 |
더 안정적인 GCM 구현을 위해 주의할 점. (2) | 2014.03.31 |
댓글