반응형

개발 시에 Auto Media Scanning 때문에 내가 생성한 폴더 내의 미디어 파일들이 갤러리나 포토 앱에 노출되는 경우 

 

해당 파일들이 포함된 폴더 내에 임의로 .nomedia 파일을 생성하게 되면 해당 폴더에 미디어 파일들이 Auto Media Scanning에서 제외 됩니다.

 

1
2
3
4
5
6
7
8
9
10
11
12
public static boolean createNoMediaFile(Context context, String path) {
    File file = new File(path + ".nomedia");
    if(!file.exists()) {
        try {
            file.createNewFile();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    return false;
}
cs

 

반응형

+ Recent posts