Android:将 TextView 中选定的文本复制到剪贴板
是否可以仅将选定的文本从 TextView UI 组件复制到剪贴板?
我已经捕获了长按事件,并将全文复制到剪贴板,但现在我想指定要从 TextView 复制的选择的开始和结束。
谢谢。
Is there a possibility to copy to clipboard from a TextView UI component only the selected text?
I've catched the long press event and I copied the full text to clipboard, but now I want to specify the start and the end of the selection to be copied from a TextView.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑(前面是完整的答案,但我错误地找到了答案,所以我想添加):
使用较新的 API,将最后两行更改为:
“Copied Text”
是较新 APIS 中 COPY 实体的标题EDIT (The previous is the full answer, but I ran into my answer by mistake so I would like to add):
With Newer APIs, change the last two lines to :
"Copied Text"
is a title for your COPY entity in newer APIS你可以这样做:
用 TextView 替换 EditText
you can do it this way:
Replace EditText with TextView