突出显示clickablespan点击

时间:2011-04-08 13:31:00

标签: android highlight

我没有什么问题,我需要在点击clickablespan时删除或自定义此橙色突出显示。这是我的类,扩展了ClickableSpan

public class InternalClickableSpan extends ClickableSpan {

    private String clicked;

    @Override
    public void updateDrawState(TextPaint ds) {
        ds.setUnderlineText(false);
    }

    public InternalClickableSpan(String clickedString) {
        clicked = clickedString;
    }

    @Override
    public void onClick(View view) {
        Selection.setSelection((Spannable) ((TextView)view).getText(), 0);
        Toast toast = Toast.makeText(mContext, clicked, Toast.LENGTH_SHORT);
        toast.show();
    }
}

这就是我在文本视图中使用它的方式

Spannable spans = (Spannable) tv.getText();      
spans.setSpan(new InternalClickableSpan(contacts[i]), text.indexOf(contacts[i]),   text.indexOf(contacts[i])+contacts[i].length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

有人知道如何在spannable对象上自定义“onclick highlight”吗?

编辑:感谢Aleadam的回复,我要覆盖updateDrawState(请查看我的InternalClickableSpan类中的第一个方法),但我无法找到自定义此higlight的方法。有没有人有其他想法?感谢

7 个答案:

答案 0 :(得分:19)

您可以像这样覆盖onClick(View widget)

        @Override
        public void onClick(View widget) {
            // do what must happen after click event.
            widget.invalidate();
        }

答案 1 :(得分:16)

这将删除任何突出显示。

tv.setHighlightColor(Color.TRANSPARENT);

答案 2 :(得分:4)

enter image description here

ClickableSpan linkClick = new ClickableSpan() {
    @Override
    public void onClick(View view) {
        Toast.makeText(getApplicationContext(), "Link Click",
                Toast.LENGTH_SHORT).show();
        view.invalidate();
    }

    @Override
    public void updateDrawState(TextPaint ds) {
        if (textView.isPressed()) {
            ds.setColor(Color.BLUE);
        } else {
            ds.setColor(Color.RED);
        }
        textView.invalidate();
    }
};
textView.setHighlightColor(Color.TRANSPARENT);

Spannable spannableString = new SpannableString("Link in TextView");
spannableString.setSpan(linkClick, 0, 4, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(spannableString, TextView.BufferType.SPANNABLE);
textView.setMovementMethod(LinkMovementMethod.getInstance());

答案 3 :(得分:1)

只需使用此..

view.setSelector(new ColorDrawable(Color.TRANSPARENT));

答案 4 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <LinearLayout android:id="@+id/LinearLayout02"
        android:layout_height="50px"
        android:layout_width="fill_parent"
        // Layout Click enable
        android:clickable="true"
        // Setting Highlight Option in background property
        android:background="@android:drawable/list_selector_background" />
    </LinearLayout>
</LinearLayout>

答案 5 :(得分:0)

你可以替换默认的highlightColor android:textColorHighlight

    <TextView
    android:id="@+id/tv_tip"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#727998"
    android:textColorHighlight="@android:color/transparent"
    tools:text="@string/_tip" />

或禁用焦点

答案 6 :(得分:-1)

textView.setText(myString);
Linkify.addLinks(textView,Linkify.ALL);

这对我有用。