alps/packages/apps/Camera/src/com/android/camera/FileSaver.java

1:import java.util.Locale;

2:modify the function:

public void refactoerTitle() {

......

if (mTag != INTERMEDIA_IMAGE) {

// if the data is InterMedia file,the file name not 

// have the index

mTitle += String.format("%02d", mIndex);

}

setIgnoreThumbnail(true);



changed to :

public void refactoerTitle() {

......

if (mTag != INTERMEDIA_IMAGE) {

// if the data is InterMedia file,the file name not 

// have the index

mTitle += String.format(Locale.ENGLISH, "%02d", mIndex); //here need to change

}

setIgnoreThumbnail(true);

}

最新文章

  1. Momo自定义DialogFragment
  2. 又一种XML的解析方法
  3. JavaSript模块规范 - AMD规范与CMD规范介绍 (转载lovenyf.blog.chinaunix.net)
  4. java课后作业
  5. Eclipse 高亮显示选中的相同变量
  6. VBA 一些用法
  7. [转]一些实用的图表Chart制作工具
  8. php函数的初步使用
  9. cmd 快捷操作
  10. vue/axios请求拦截
  11. machine learning 之 Neural Network 3
  12. Testing - 敏捷测试
  13. weex Mac创建项目
  14. FortiGate设置E-mail告警
  15. item 12: 把重写函数声明为“override”的
  16. SpringMVC框架09——@ResponseBody的用法详解
  17. [dpdk] SDK编译-简单扼要版
  18. Intersecting Lines
  19. 关于RabbitMQ交换机的理解
  20. 我购买byd的几点逻辑

热门文章

  1. 1.5(Spring MVC学习笔记) 拦截器(Interceptor)
  2. 5.8 Properties
  3. 针对标签中设置 disabled="true",$("#id").serialize()获取不到value的解决方法
  4. Easyui datagrid 隐藏多选框 checkbox
  5. android加密解密完美教程
  6. iOS:IOS项目集成ShareSDK实现第三方登录、分享、关注等功能。
  7. Solr报错Index locked for write for core '***'. Solr now longer supports forceful unlocking via 'unlockOnStartup'
  8. iOS小技巧 - 如何生成范围随机数
  9. [Typescript] Improve Readability with TypeScript Numeric Separators when working with Large Numbers
  10. tomcat优化---大数据量提交tomcat时,tomcat无法接收导致页面无反应