如何从android中的edittext中获取选定的文本?
Posted
技术标签:
【中文标题】如何从android中的edittext中获取选定的文本?【英文标题】:How to get selected text from edittext in android? 【发布时间】:2012-04-21 16:21:34 【问题描述】:我有一个编辑文本,其中选择了一些文本。我只想在单击按钮时从 edittext 中获取选定的文本。
请给我推荐可用的链接或示例代码。
【问题讨论】:
Search Have a look at this answer 【参考方案1】:EditText et=(EditText)findViewById(R.id.edit);
int startSelection=et.getSelectionStart();
int endSelection=et.getSelectionEnd();
String selectedText = et.getText().toString().substring(startSelection, endSelection);
【讨论】:
如果你想检查 selectedtext 是否为空,在它之后。你必须使用 isEmpty 函数。【参考方案2】:getSelectionStart()
getSelectionEnd()
看到这个link
【讨论】:
【参考方案3】:科特林
val startSelection: Int = editText.selectionStart
val endSelection: Int = editText.selectionEnd
val selectedText: String = editText.text.substring(startSelection, endSelection)
【讨论】:
以上是关于如何从android中的edittext中获取选定的文本?的主要内容,如果未能解决你的问题,请参考以下文章