今天项目经理提了一个需求,需要在手写签名的基础上加入支持任意位置进行部分内容删改功能,需要可以录入标点。然后就到github上找了个有类似功能的demo(毕竟有现成的轮子不用是犯罪),不过这个demo不支持中间位置录入及标点录入,且存在一些小问题。
这是原作的demo地址(有兴趣的可以对照这看):https://github.com/913453448/SignatureDemo
原作的内容我就不细讲了,下面我讲讲我进行的一些修改。
首先我对不能在中间位置进行录入进行了修改,主要就是通过EditText光标位置定位,再将加入内容方式进行了改变,原本是直接用的EditText.append(""),直接把内容加到最后。
mContainer.append(spanString);//在edittext末尾添加
我现在通过Editable的insert方法在指定位置加入
Editableedit =mContainer.getEditableText();//获取EditText的文字
edit.insert(getEditTextCursorIndex(mContainer), spanString);//光标所在位置插入文字
修改了录入之后我发现在EditText上显示我们的手写字迹之后,中间位置点击光标被遮盖了,对此我在每一个自己图片后面都加了一个空字符串,这样光标就不会被遮盖了。由于我们不总是在末尾加入,这样就需要对光标位置做个判断,以确定空字符串添加位置
String space =" ";//添加空格,解决光标被遮挡问题
if (getEditTextCursorIndex(mContainer) <0 || getEditTextCursorIndex(mContainer) >= edit.length()) {
edit.append(spanString);//在edittext末尾添加
edit.append(space);
}else {
if (getEditTextCursorIndex(mContainer) %2 ==0) {
edit.insert(getEditTextCursorIndex(mContainer), spanString);//光标所在位置插入文字
edit.insert(getEditTextCursorIndex(mContainer), space);
}else {
edit.insert(getEditTextCursorIndex(mContainer), space);
edit.insert(getEditTextCursorIndex(mContainer), spanString);//光标所在位置插入文字
}
}
但这样之后我们在删除字迹时就出问题了,我们要对此进行修改,每删除一个字迹就要删除一个空字符串,由于我们是通过光标位置来定位的,所以还要做个光标位置的判断。
//删除需对加入的空格做处理
if ((getEditTextCursorIndex(mEditText) %2) ==1) {//光标在文字图片后,空格前,删除光标前一个和后一个
mEditText.getText().delete(getEditTextCursorIndex(mEditText) -1, getEditTextCursorIndex(mEditText) +1);
}else {//光标在文字图片前,空格后,删除光标前两个
mEditText.getText().delete(getEditTextCursorIndex(mEditText) -2, getEditTextCursorIndex(mEditText));
}
改完之后试了下发现标点根本没法用手写方式录入,因为我们会把手写内容去白边,在缩放到指定高度展示,这样标点就会很大,完全看不出是个标点,没办法,我只能做了个点击添加标点的功能,其实就是加个按钮,添加个图片。当然为了不影响其他功能,我还加了添加到图片集合,添加图片到指定路径,当然标点我只是写了个例子,没有全部添加。
/**
* 添加标点符号
* @param bitmap 标点图片
*/
private void addPunctuation(Bitmap bitmap) {
String fileDir = getExternalCacheDir() +"signature/";
String path = fileDir + SystemClock.elapsedRealtime() +".png";
File file =new File(fileDir);
if (!file.exists()) {
file.mkdir();
}
bitmaps.add(bitmap);
uploadFiles.add(new File(path));
drawBitmaps(bitmap);
showFiles();
}
运行是我发现在EditText中有图片内容时,在首位执行删除操作后,会有部分图片无法在删除了,看代码发现是因为判断光标的位置和改变图片集合的位置循序不对,对此我做了调整。
//这些操作放到deleteText();方法中执行,避免光标在首位时按删除导致的bitmaps.size()有误
/*bitmaps.remove(bitmaps.size() - 1);
File file = uploadFiles.get(uploadFiles.size() - 1);
uploadFiles.remove(file);
file.delete();*/
deleteText(mContainer);
/* showFiles();*/
if (getEditTextCursorIndex(mEditText) ==0) {//光标在首位时不做处理
return;
}
bitmaps.remove(bitmaps.size() -1);
File file =uploadFiles.get(uploadFiles.size() -1);
uploadFiles.remove(file);
file.delete();
showFiles();
至此,我们的需求已经完成了,但我运行时发现这个自定义书写view不能处理文字“一”类似的输入,因为现在是去白边后展示成默认高度,这样就会出现一个非常粗的横杠,为此我在去白边时做了一些判断。
boolean needHandle =false;
if (bottom - top <100 && (right - left) / (bottom - top) >2.5) {//处理汉字“一”这样的特殊情况
int resoultH = (bottom - top) *targetWidth / (right - left);
top = top - (100 - resoultH) /2;
bottom = bottom + (100 - resoultH) /2;
needHandle =true;
}
当然这样之后生成Bitmap时就要分情况来处理了。
int resultW;
if (needHandle) {//处理汉字“一”这样的特殊情况
resultW =targetWidth;
}else {
resultW = b.getWidth() *targetHeight / b.getHeight();
}
return Bitmap.createScaledBitmap(b, resultW, targetHeight, false);
处理完这些之后,我又想到我存了这么多的图片到手机上,还一直没有处理,所以我就加了一个递归删除图片文件夹的操作,当然我demo中是在每次打开时清除,你们也可以在自己认为合适的时候执行删除,比如内容提交给后台了。
/**
* 递归删除图片文件夹下的所有文件及文件夹
* @param filePath 文件夹路径
* @param deleteThisPath 是否删除这个路径下的所有文件
*/
private void deleteBitmap(String filePath, boolean deleteThisPath){
if (!TextUtils.isEmpty(filePath)) {
try {
File file =new File(filePath);
if (file.isDirectory()) {//目录
File files[] = file.listFiles();
for (int i =0; i < files.length; i++) {
deleteBitmap(files[i].getAbsolutePath(), true);
}
}
if (deleteThisPath) {
if (!file.isDirectory()) {//如果是文件,删除
file.delete();
}else {//目录
if (file.listFiles().length ==0) {//目录下没有文件或者目录,删除
file.delete();
}
}
}
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
当然因为我们这边文件夹下已经确定没有文件夹了,我就没做这方面的处理,如果大家有这方面的需求可以自己百度。
好了以上就是我所做的修改,希望能对大家有所帮助,下面贴出我的demo地址: