0

已经试过网上搜索了。这是我正在尝试做的一个例子:

textview 中的文本是:“嘿,你好吗,检查这个链接:http ://www.google.com ,如果你不喜欢这个链接,试试这个链接http://yahoo.com或者最后试试http://tinyurl .com/wp-tinyurl "

我想让所有这些链接在列表视图中可点击。我不想在 textview 对象上使用 android:autoLink="web" ,因为列表项本身是可点击的,这些会消耗点击事件或导致混淆。我正在寻找一种方法来扫描文本并收集链接,然后将它们更改为 spanURL,这样只有文本变得可点击,而不是 textview。如果这有什么不同的话,那就是我现在拥有的列表视图的行布局中的文本视图:

 <TextView
        android:id="@+id/tv_user_response"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="25dp"
        android:autoLink="web"
        android:descendantFocusability="blocksDescendants"
        android:textColor="@color/grey_font"
        android:textSize="14sp" />

但我相信我必须以编程方式处理这个问题。

更新:感谢这里提供的链接是我最终做的:

public class Linkifier {


public TextView setLinks(TextView tv, String text) {
    String[] linkPatterns = {
            "([Hh][tT][tT][pP][sS]?:\\/\\/[^ ,'\">\\]\\)]*[^\\. ,'\">\\]\\)])",
            "#[\\w]+", "@[\\w]+" };
    for (String str : linkPatterns) {
        Pattern pattern = Pattern.compile(str);
        Matcher matcher = pattern.matcher(tv.getText());
        while (matcher.find()) {
            int x = matcher.start();
            int y = matcher.end();
            final android.text.SpannableString f = new android.text.SpannableString(
                    tv.getText());
            InternalURLSpan span = new InternalURLSpan();
            span.text = text.substring(x, y);
            f.setSpan(span, x, y,
                    android.text.Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
            tv.setText(f);
            // tv.setOnLongClickListener(span.l);

        }
    }
    tv.setLinkTextColor(Color.BLUE);
    tv.setLinksClickable(true);
    tv.setMovementMethod(LinkMovementMethod.getInstance());
    tv.setFocusable(false);

    return tv;

}

class InternalURLSpan extends android.text.style.ClickableSpan {
    public String text;

    @Override
    public void onClick(View widget) {
        Utils.createToast(widget.getContext(),text);
        handleLinkClicked(widget.getContext(),text);
    }


    public void handleLinkClicked(Context context,String value) {
        if (value.startsWith("http")) {     // handle http links
        } else if (value.startsWith("@")) {
            // handle @links

        } else if (value.startsWith("#")) { // handle #links
            String searchTerm=text.replace("#", "");

            String query = null;
            try {
                query = URLEncoder.encode(text, "utf-8");
            } catch (UnsupportedEncodingException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(Consts.URL_TWITTER_SEARCH+query));
            context.startActivity(browserIntent);
        }
    }
}

}

然后你可以创建链接器类,我像这样运行它: Linkifier linkifier= new Linkifier(); linkifier.setLinks(myTextView, "我的消息等");

textview 必须已经包含文本,并且第二个参数与您要查找的文本匹配。所以如果 myTextView 包含“嘿,你好吗检查这个链接:http ://www.google.com如果你不喜欢那个链接,试试这个链接http://yahoo.com或者最后试试http://tinyurl.com /wp-tinyurl " 然后第二个参数放置相同的字符串。

4

0 回答 0