Skip to content

Instantly share code, notes, and snippets.

@4dcity
4dcity / LinkTouchMovementMethod.java
Last active March 2, 2016 06:41
Change the text color of a single ClickableSpan when pressed without affecting other ClickableSpans in the same TextView
import android.text.Layout;
import android.text.Selection;
import android.text.Spannable;
import android.text.TextPaint;
import android.text.method.LinkMovementMethod;
import android.text.style.CharacterStyle;
import android.text.style.UpdateAppearance;
import android.view.MotionEvent;
import android.view.View;
import android.widget.TextView;