Zero-width line breaking space for Android

后端 未结 5 1295
庸人自扰
庸人自扰 2020-12-14 18:36

Does anyone know if \\u200b should be working on Android as a zero width space that functions as a line break if the TextView length is exceeded by the text of the TextView?

5条回答
  •  执念已碎
    2020-12-14 18:53

    If you only want to control the presentation in a browser, you might try a zero-width inline class in CSS:

    .zw { display: inline-block; width: 0; }
    

    Then, in the HTML:

    abc 123
    

提交回复
热议问题