我正在尝试实现复制/粘贴功能.如何从 EditText 中选择文本?
I'm trying to implement a copy/paste function. How can I get a selection of text from an EditText?
EditText et=(EditText)findViewById(R.id.title);
blabla onclicklistener on a button:
blabla onclicklistener on a button:
int startSelection=et.getSelectionStart();
int endSelection=et.getSelectionEnd();
那我就卡住了.有什么想法吗?
Then I'm stuck. Any ideas?
看起来你已经完成了找到所选区域的困难部分.现在你只需要从全文中提取那个子字符串.
Seems like you've already done the hard part by finding what the selected area is. Now you just need to pull that substring out of the full text.
试试这个:
String selectedText = et.getText().substring(startSelection, endSelection);
这只是一个基本的 Java 字符串 操作.
It's just a basic Java String operation.
这篇关于Android - 从 EditText 中选择文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
在android中剪切、复制、粘贴Cut, copy, paste in android(在android中剪切、复制、粘贴)
android EditText 融入背景android EditText blends into background(android EditText 融入背景)
更改 EditText 的线条颜色 - AndroidChange Line Color of EditText - Android(更改 EditText 的线条颜色 - Android)
EditText 始终显示带 2 位小数的数字EditText showing numbers with 2 decimals at all times(EditText 始终显示带 2 位小数的数字)
更改光标在展开的 EditText 中的开始位置Changing where cursor starts in an expanded EditText(更改光标在展开的 EditText 中的开始位置)
android中的EditText,adjustPan,ScrollView问题EditText, adjustPan, ScrollView issue in android(android中的EditText,adjustPan,ScrollView问题)