在 Android 中从浏览器复制带有换行符的文本
在我的应用程序中,用户必须从浏览器复制所需的文本并将其粘贴到文本视图。 但通过这种方式复制粘贴可以消除大部分换行符。我该如何修复它?
In my app, a user has to copy required text from browser and paste it to the textview.
But copy'n'pasting this way removes most of line breaks. How do I fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您能够强制使用浏览器,我发现 Android 上的 Chrome 在复制和粘贴时比 Firefox 更好地保留换行符。我最近在从没有
的 HTML 页面复制源代码时遇到了这个问题(就像当文本使用If you are able to enforce browser usage, I find that Chrome on Android preserves line breaks when copying and pasting much better than Firefox. I recently ran into this issue when copying source code from an HTML page that did not have
<br />
's (as when text is formatted with<pre>
). Copying from Firefox consistently ignored line breaks, but Chrome copied them without issue.