防止TextView中的换行符

时间:2014-01-13 14:58:39

标签: android textview

在我的Android应用中,我有一个文本视图,显示包含特殊字符的文本。 TextView以某种方式自动在字符'/'和' - '处打破字符串。

例如,字符串“aaaaaaa / bbb-ccccc / ddd”显示为

aaaaaaa/
bbb-
ccccc/
ddd

但是,除了在视图边界处的那个之外,我想显示它没有任何换行符,例如,像这样:

aaaaaaa/bb
bb-ccccc/d
dd

有没有办法停用自动换行符或转义这些字符?我已经尝试用\ uFEFF转义而没有成功。

10 个答案:

答案 0 :(得分:4)

保留textview属性

android:layout_width="wrap_content"
android:layout_height="wrap_content"

在string.xml中定义字符串

<string name="Username"> aaaaaaa\/bb\nbb\-ccccc\/d\ndd</string>

答案 1 :(得分:3)

也许这是一个解决方案:https://stackoverflow.com/a/22337074/3472905

我已经添加了提到的斜杠:

public class WordBreakTransformationMethod extends ReplacementTransformationMethod {
    private static WordBreakTransformationMethod instance;

    private WordBreakTransformationMethod() {}

    public static WordBreakTransformationMethod getInstance() {
        if (instance == null) {
            instance = new WordBreakTransformationMethod();
        }

        return instance;
    }

    private static char[] dash = new char[]{'-', '\u2011'};
    private static char[] space = new char[]{' ', '\u00A0'};
    private static char[] slash = new char[]{'/', '\u2215'};

    private static char[] original = new char[]{dash[0], space[0], slash[0]};
    private static char[] replacement = new char[]{dash[1], space[1], slash[1]};

    @Override
    protected char[] getOriginal() {
        return original;
    }

    @Override
    protected char[] getReplacement() {
        return replacement;
    }
}

答案 2 :(得分:1)

您可能可以使用Lines属性或其对位方法setLines(int)

答案 3 :(得分:1)

没有现成的解决方案,也没有“在TextView中用文字换行”这样的事情,以一种好的方式做到这一点的唯一方法是扩展TextView并修改Paint的breakText(String text,boolean measureForwards,float maxWidth,float [ ] measuredWidth)功能。

此外,您可以计算TextView大小(以像素为单位),计算一个字母的宽度(以像素为单位),然后找到适合一行的字母数(X),然后在每个X字母后插入换行符

答案 4 :(得分:0)

我测试了以下代码。您甚至可以将其转换为函数:

    String specialString = "a/b/-c/d-d";
    String[] specialArray = specialString.split("/");
    String str = "";
    for(int i = 0; i < specialArray.length - 1; i++){
        str = str + specialArray[i] + Character.toString((char) 47);
    }
    str = str + specialArray[specialArray.length - 1];
    specialArray = str.split("-");
    str = "";
    for(int i = 0; i < specialArray.length - 1; i++){
        str = str + specialArray[i] + Character.toString((char) 45);
    }
    str = str + specialArray[specialArray.length - 1];
    textView.setText(str);

现在文字没有逃脱

答案 5 :(得分:0)

您可以通过以下方式计算文字大小:

String text = "This is my text";
Paint textPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
textPaint.setTextSize(14.0f);
Rect bounds = new Rect();
textPaint.getTextBounds(text, 0, text.length(), bounds);

bounds.width() // width in pixels
bounds.height() // height in pixels

根据这些值,您可以分解文本并插入换行符。

答案 6 :(得分:0)

它是Android 6中的新功能。

尝试将此添加到TextView xml布局

android:hyphenationFrequency="none"

答案 7 :(得分:0)

这是我在科特林的作品

object WordBreakTransformationMethod : ReplacementTransformationMethod() {
    private val dash = charArrayOf('-', '\u2011')
    private val space = charArrayOf(' ', '\u00A0')
    private val slash = charArrayOf('/', '\u2215')

    private val original = charArrayOf(dash[0], space[0], slash[0])
    private val replacement = charArrayOf(dash[1], space[1], slash[1])

    override fun getOriginal() = original
    override fun getReplacement() = replacement
}

//tv_text is TextView
tv_text.apply {
    transformationMethod = WordBreakTransformationMethod
    text = item.text
}

答案 8 :(得分:0)

Android TextView遵循标准的Unicode换行算法:http://www.unicode.org/reports/tr14/tr14-45.html 摘录: / 防止在之前休息,允许在之后休息

您可以通过在斜杠后放置“单词连接符”(U + 2060)来解决此问题。

strings.xml中的示例: aaaaaaa / \ u2060bbb-ccccc / \ u2060ddd

您也可以尝试使用android:breakStrategy =“ balanced”将行的长度保持大致相同。

答案 9 :(得分:-1)

你可以试试这个:

"aaaaaaa"+"/"+"bbb-ccccc"+"/"+"ddd"