在 Android 中剪切、复制、粘贴
我想在我的 EditText 中实现剪切、复制、粘贴功能,我尝试使用以下代码:
ClipMan = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
editbox1.setText(ClipMan.getText());
用于粘贴文本,但它将整个文本粘贴到另一个编辑框中。我想复制所选文本并将该文本粘贴到相同的编辑框就像普通记事本一样工作..
非常感谢任何建议... 谢谢 !!
I want to implement the cut,copy, paste functionality in my EditText,i tried with the following code :
ClipMan = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
editbox1.setText(ClipMan.getText());
for paste the text,but it paste the whole text in another Editbox..I want to copy the selected text and paste that text in the same Editbox just like the normal notepad works..
Any suggestions are greatly appreciated...
Thanks !!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要复制数据
并获取在您的情况下复制的数据,
您可以使用
EditText.getText()
而不是Value
。和
EditText.setText(pasteData);
用于粘贴该数据。for copy data
and get data which was copied
in your case you can use
EditText.getText()
instead ofValue
..and
EditText.setText(pasteData);
for paste that data.最后,我可以在我的应用程序中复制、粘贴。现在我可以使用以下代码仅粘贴选定的文本:
复制选定的文本:
粘贴选定的文本:
Finally i am able to copy ,paste in my application..now i can paste only selected text by using this code :
to copy the selected text :
to paste the selected text:
我们可以这样做:
we can do this way :