검색어 ㅣ킷캣 , 갤러리 갱신
http://stackoverflow.com/questions/20265438/refresh-gallery-in-android-kitkat
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
Intent mediaScanIntent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE);
File f = new File("folderPATH", "fileName");
Uri contentUri = Uri.fromFile(f);
mediaScanIntent.setData(contentUri);
appContext.sendBroadcast(mediaScanIntent);
} else {
appContext.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://" + Environment.getExternalStorageDirectory() + "/" + "FOLDER_TO_REFRESH")));
}
-> 안됨
반응형
'공부해요 > 안드로이드' 카테고리의 다른 글
안드로이드 스튜디오 설치하기 (0) | 2016.08.18 |
---|---|
[Andorid] Export activity – 1. 안드로이드 라이브러리 프로젝트 (0) | 2015.04.07 |
The specified child already has a parent. You must call removeView() on the child's parent first. (0) | 2015.01.29 |
[ 웹앱 & 하이브리드 앱 프로그래밍 ] 한번 훑어보기 (0) | 2015.01.16 |