如何在 Android 中执行退格转义字符?
我有一个文本视图,其中有一些文本。我想删除最后 4 个字符,然后添加更多文本。我尝试这样做。
textViewObject.append("\b\b\b\b new text that I am adding");
但它们不是用 \b 执行退格键,而是在文本字段中显示为小方块。有人可以帮我吗?
I have a textView with some text in it. I want to delete the last 4 characters and then add on some more text. I tried doing this.
textViewObject.append("\b\b\b\b new text that I am adding");
But instead of the \b doing a backspace, they show up as little squares in the textfield. Can anyone help me out here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过抓取除最后 4 个字符之外的所有文本,然后附加新文本,您应该能够实现相同的效果。
You should be able to achieve the same effect by grabbing all the text except the last 4 characters and then appending your new text.