标签:文件 content style detail 避免 html ons exist line
总结 Android nomedia 避免文件泄露在系统图库和系统铃声中
在应用开发中 项目的图片总是被系统的图库收录了
避免图片被系统图库收录的发现有2个方法
第一种针对图片
将 .png为后缀的图片所有改名为 .ing 后缀
比如 ic_launcher.png 改为 ic_launcher.ing
另外一种
在项目存放图片的目录写入
File nomedia = new File(filePath + "/.nomedia" ); if (! nomedia.exists()) try { nomedia.createNewFile(); } catch (Exception e) { e.printStackTrace(); }
Android nomedia 避免图片等资源泄露在系统图库其中
标签:文件 content style detail 避免 html ons exist line
原文地址:http://www.cnblogs.com/yutingliuyl/p/7089140.html