기존 킷켓 이전에는
sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory())));
이렇게해서 겔러리를 갱신했었지만
킷캣부터 이렇게 바꼈다
private void galleryAddPic() { Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE); File f = new File(mCurrentPhotoPath); Uri contentUri = Uri.fromFile(f); mediaScanIntent.setData(contentUri); this.sendBroadcast(mediaScanIntent); }
대신에 저 photoPath에 경로를 주는것이 아니라 업로드한 사진 경로 풀경로를 줘야 한다는것이다. 파일이름까지
참고 : http://www.codeproject.com/Questions/689342/Refresh-gallery-in-android-kitkat
'Android App' 카테고리의 다른 글
안드로이드 커스텀 이벤트 등록 (0) | 2015.07.22 |
---|---|
외부 라이브러리 jar 만들고 연동방법 (0) | 2015.07.16 |
ADB 에러 - more than one device (0) | 2014.09.03 |
ImagePager SetCurrentItem으로 강제로 이동시 Smooth 하게 이동하기 (0) | 2014.08.28 |
앱 종료 시점알기, 앱종료인지 아니면 Activity끼리 전환인지 구분 (0) | 2014.08.27 |