Back to project page dexedd.
The source code is released under:
MIT License
If you think the Android project dexedd listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.nav.dexedd.text; /*from ww w. j a v a2 s . c o m*/ import android.text.TextPaint; import android.text.style.ClickableSpan; import android.view.View; /** * A clickable span with overriden draw state update (no underline or color). * * @author Eduardo Naveda * @since 0.0.1 */ public class CleanClickableSpan extends ClickableSpan{ @Override public void onClick(View widget) {} @Override public void updateDrawState(TextPaint ds) { ds.setUnderlineText(false); } }