問題は、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();
}