2

我正在尝试在EditText中检索单击链接的 URL 。我想触摸一个链接,然后用它的 URL 做一些事情。我得到的最接近的是确定光标所在的跨度是否是 URLSpan 样式:

int s1 = Math.max(mText.getSelectionStart(), 0);
int s2 = Math.max(mText.getSelectionEnd(), 0);
Spannable raw = new SpannableString(mText.getText());
CharacterStyle[] spans = raw.getSpans(s1, s2, CharacterStyle.class);
for (CharacterStyle span : spans) {
    if(span.getClass().equals(android.text.style.URLSpan.class)){
        //is a link, but what is the URL?

    }
}

如果我将其全部转换为 HTML 字符串,那么我不知道如何将纯文本的光标位置与 html 文本相关联。我可以使用 获取 EditText 中的所有 URL getUrls(),但仍然不知道单击了哪个 URL。如果我可以做类似的事情:EditText.getPortion(start, end).getUrls(),那会更接近,但到目前为止我还没有看到任何类似的方法。

4

2 回答 2

2

试试这个代码,

EditText editText = (EditText) findViewById(R.id.edittext);
editText.setText(someContent);
Linkify.addLinks(editText, Linkify.ALL);
Log.d(TAG, "HTML: " + Html.toHtml(editText.getEditableText()));

并查看本教程,

http://developer.android.com/reference/android/text/util/Linkify.html

于 2013-08-28T07:28:28.210 回答
1

我意识到这是一个 4 岁的回应,但要回答未来的访客:

for (CharacterStyle span : spans) {
    if(span.getClass().equals(android.text.style.URLSpan.class)){
        //you almost had it here, just cast the span as a URLspan
        URLSpan u = (URLSpan)spans[j];
        String span_url = u.getURL();
    }
}
于 2017-12-15T13:41:46.373 回答