Android-TextView中英文混合换行问题

TextView在展示中英文混合内容时,会出现自动换行排版混乱的问题,如下图:

Android-TextView中英文混合换行问题_第1张图片

在网上关于此类问题的解决方案,关于全角半角转换的方式并不能解决问题.下面推荐一种可行的方案作为参考.
贴图片:


Android-TextView中英文混合换行问题_第2张图片
图片展示.png

贴代码:

private String autoSplitText(final TextView tv) {
        final String rawText = tv.getText().toString(); //原始文本
        final Paint tvPaint = tv.getPaint(); //paint,包含字体等信息
        final float tvWidth = tv.getWidth() - tv.getPaddingLeft() - tv.getPaddingRight(); //控件可用宽度
        //将原始文本按行拆分
        String[] rawTextLines = rawText.replaceAll("\r", "").split("\n");
        StringBuilder sbNewText = new StringBuilder();
        for (String rawTextLine : rawTextLines) {
            if (tvPaint.measureText(rawTextLine) <= tvWidth) {
                //如果整行宽度在控件可用宽度之内,就不处理了
                sbNewText.append(rawTextLine);
            } else {
                //如果整行宽度超过控件可用宽度,则按字符测量,在超过可用宽度的前一个字符处手动换行
                float lineWidth = 0;
                for (int cnt = 0; cnt != rawTextLine.length(); ++cnt) {
                    char ch = rawTextLine.charAt(cnt);
                    lineWidth += tvPaint.measureText(String.valueOf(ch));
                    if (lineWidth <= tvWidth) {
                        sbNewText.append(ch);
                    } else {
                        sbNewText.append("\n");
                        lineWidth = 0;
                        --cnt;
                    }
                }
            }
            sbNewText.append("\n");
        }
        //把结尾多余的\n去掉
        if (!rawText.endsWith("\n")) {
            sbNewText.deleteCharAt(sbNewText.length() - 1);
        }
        return sbNewText.toString();
    }

以上方法原理是通过对TextView控件宽度进行计算,当输入内容超过宽度是,将原有文本自动加入换行符,重新拼接好文本内容放入TextView就可以了,可根据需求自己优化和修改。贴一下效果图:

Android-TextView中英文混合换行问题_第3张图片

好用记得戳一下喜欢~

你可能感兴趣的:(Android-TextView中英文混合换行问题)