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

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);

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。