본문 바로가기

Kotlin

[Android/Kotlin] 촬영 혹은 앨범 사진 저장 시, 앨범에서 안보일 때, 혹은 바로 갱신이 되지 않을 때. ACTION_MEDIA_SCANNER_SCAN_FILE

반응형

기존에는 ACTION_MEDIA_SCANNER_SCAN_FILE을 활용해서 내가 저장한 사진이 바로 앨범에서 확인할 수 있도록 하였으나, 현재 ACTION_MEDIA_SCANNER_SCAN_FILE 은 deprecated 되어서 다른 방법으로 해야한다.

 

해당 관련 링크는 아래 첨부하므로 해당 링크에서 사용하면 된다.

 

ddolcat.tistory.com/824

 

안드로이드(android) Intent.ACTION_MEDIA_SCANNER_SCAN_FILE deprecated 대체방법

Android의 파일 시스템에 파일을 추가 할 때 특정 파일 미디어 파일 스캔 처리를 위해 이미지를 저장 후 갤러리에 보이도록 하기 위해서 지금까지는 Intent.ACTION_MEDIA_SCANNER_SCAN_FILE필터를 사용하여 se

ddolcat.tistory.com

 

stackoverflow.com/questions/32789157/how-to-write-files-to-external-public-storage-in-android-so-that-they-are-visibl

 

How to write files to external public storage in Android so that they are visible from Windows?

My app should save files to a place where, when you connect your phone/tablet to a computer, you can see them through the system file explorer. This is the way I implemented file writing: protected

stackoverflow.com

해당 링크에서 코드를 화면하면 MIME TYPE을 입력해야 한다.

관련 링크는 해당 아래에 포함하므로, 참고하면 될듯 하다.

 

choidev-1.tistory.com/72

 

[안드로이드] ContentValues Mime Type

오늘은 ContentValues에 사용되는 MimeType에 대해서 알아보려고 합니다. MimeType이란? 이 데이터가 어떤 형식의 데이터인지 설명하는 이름 예) text/plane = 문자만 있는 파일 , image/jpeg = jpeg형식의 이미지.

choidev-1.tistory.com

 

반응형