2

问题是处理我自己点击 URL 跨度的操作。我写了自定义 URLSpan 但它不起作用。

这是我的自定义 URLSpan:

public class CustomURLSpan extends android.text.style.URLSpan {
    private Command mClickAction;

    public CustomURLSpan(String url, Command clickAction) {
        super(url);
        mClickAction = clickAction;
    }

    @Override
    public void onClick(View widget) {
        try {
            mClickAction.execute();
        } catch (Exception e) {
        }
    }

    public static void clickifyTextView(TextView tv, Command clickAction) {
        SpannableString current = new SpannableString(tv.getText());
        URLSpan[] spans =
                current.getSpans(0, current.length(), URLSpan.class);

        for (URLSpan span : spans) {
            int start = current.getSpanStart(span);
            int end = current.getSpanEnd(span);

            current.removeSpan(span);
            current.setSpan(new CustomURLSpan(span.getURL(), clickAction), start, end, 0);
        }
    }

    public interface Command {
        void execute();
    }
}

我在这里使用它:

@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {

    Bundle bundle = getArguments();
    String message = bundle.getString("message");
    final Activity activity = getActivity();
    text = new TextView(activity);
    text.setText(message);

    Linkify.addLinks(text, Linkify.EMAIL_ADDRESSES);
    CustomURLSpan.clickifyTextView(text, new CustomURLSpan.Command() {
        @Override
        public void execute() {
            //I want to do my stuff here, but not working
        }
    });
    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(getActivity());
    alertDialogBuilder.setView(text);
    alertDialogBuilder.setNegativeButton("Close", new DialogInterface.OnClickListener() {
        ...
}

但是如果我点击 url,我会得到原生的 android 对话框来选择电子邮件程序。我在互联网上找到的所有示例都是相同的。

编辑:根据@CommonWare 的回答。我只需要:

...
public static void clickifyTextView(TextView tv, Command clickAction) {
    SpannableString current = new SpannableString(tv.getText());
    URLSpan[] spans =
            current.getSpans(0, current.length(), URLSpan.class);

    for (URLSpan span : spans) {
        int start = current.getSpanStart(span);
        int end = current.getSpanEnd(span);

        current.removeSpan(span);
        current.setSpan(new CustomURLSpan(span.getURL(), clickAction), start, end, 0);
        tv.setText(current); //this is what I need
    }
}

public interface Command {
    void execute();
}
4

2 回答 2

4

clickifyTextView()从 中检索文本TextView,将其包装在一个新的SpannableString...中,然后从不更新TextView. clickifyTextView()修改 中内容的副本也是如此,TextView因此不会影响TextView.

尝试setText()TextView跨度转换循环之后调用clickifyTextView().

于 2015-05-06T21:55:53.637 回答
2

movementMethod = LinkMovementMethod()使用任何时设置为您的文本视图ClickableSpan

于 2020-08-06T16:04:29.703 回答