我有一个textview和链接。我希望当我触摸它们时突出显示链接,并且当我长按它时我想打开一个Alertdialog。我尝试通过自定义URLSpan来达到解决方案,但是,由于在调用OnClick之前无法访问mView,我无法设置监听器:
class ConfirmSpan extends URLSpan{
View mView;
URLSpan span;
public ConfirmSpan(URLSpan span) {
super(span.getURL());
this.span = span;
//there is a nullpointerexception here since mView is null now.
mView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
((TextView)v).setBackgroundColor(0xcccccccc);
return false;
}
});
//this is also an exception
mView.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Log.d("INFO","long click yay!");
return false;
}
});
}
//this should be called to reach the view. But then I can't handle touch state.
@Override
public void onClick(View widget) {
mView = widget;
//bla bla..
}
public void openURL() {
super.onClick(mView);
}
}
我想我必须自定义LinkMovementMethod类但是如何? 任何评论将不胜感激。 更新: 我现在能够使用以下代码处理触摸事件:
public class CustomLinkMovementMethod extends LinkMovementMethod {
private static CustomLinkMovementMethod sInstance;
@Override
public boolean onTouchEvent(TextView widget, Spannable buffer, MotionEvent event) {
// Here I am changing backgorund color
if(event.getAction() == MotionEvent.ACTION_DOWN)
widget.setBackgroundColor(0xcccccccc);
if(event.getAction() == MotionEvent.ACTION_UP)
widget.setBackgroundColor(0xffffffff);
return super.onTouchEvent(widget, buffer, event);
}
public static MovementMethod getInstance() {
if (sInstance == null)
sInstance = new CustomLinkMovementMethod();
return sInstance;
}
}
但TextView名为widget,一个参数OnTouchEvent(),不是我想要的。这是所有的文字。所以,当我触摸链接时,文字会变成灰色。我想我需要一些其他方法,比如通过查找链接起点和终点线的坐标来着色链接的背景。
答案 0 :(得分:3)
感谢您提出这个问题,我想我可能会为您提供解决方案。
查看https://gist.github.com/qtyq/90f9b4894069a8b3676c
中的代码它是SpannableString的工厂助手类,它允许您通过以下方式轻松创建SpannableString:
以下是其用法示例:
SpannableString ss = SpannableBuilder.init(bottomText)
.setColor("Terms & Conditions", getResources().getColor(R.color.orange))
.makeLink(getContext(), "Terms & Conditions", terms)
.setColor("Privacy Policy", getResources().getColor(R.color.orange))
.makeLink(getContext(), "Privacy Policy", policy)
.create();
textView1.setText(ss);
当然,如果您需要进一步自定义,您可以自定义该类中已有的方法或添加自己的方法,只需阅读有关SpannableString的Google文档,了解有关您可以执行的操作的更多信息。