首页 > 移动平台 > 详细

android 阿拉伯语下,图库中编辑运动轨迹图片,动画中会显示绿色的图片

时间:2017-04-27 15:25:44      阅读:240      评论:0      收藏:0      [点我收藏+]
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);

android 阿拉伯语下,图库中编辑运动轨迹图片,动画中会显示绿色的图片

原文:http://www.cnblogs.com/wzjhoutai/p/6774202.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!