티스토리 툴바



Activity 에서의 처리
view source
print?
1.// media center 새로고침 
2.// 사진 촬영 후 새로 고침 하지 않으면 갤러리에서 촬영된 사진을 볼 수 없음 
3.sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, 
4.        Uri.parse("file://"+ Environment.getExternalStorageDirectory())));


Activity 가 없는 곳에서의 처리
view source
print?
1.context.getApplicationContext().sendBroadcast(
2.        new Intent(Intent.ACTION_MEDIA_MOUNTED, 
3.        Uri.parse("file://"+ Environment.getExternalStorageDirectory())));


Posted by 깨꼬락
TAG ,