Android ClickableSpan no llama al hacer clic

150

Estoy creando un ClickableSpan, y se muestra correctamente con el texto correcto subrayado. Sin embargo, los clics no se registran. ¿Sabes lo que estoy haciendo mal?

Gracias victor

Aquí está el fragmento de código:

view.setText("This is a test");
ClickableSpan span = new ClickableSpan() {
    @Override
    public void onClick(View widget) {
        log("Clicked");
    }
};
view.getText().setSpan(span, 0, view.getText().length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
Victor Grazi
fuente

Respuestas:

430

¿Has intentado configurar el Método de movimiento en TextView que contiene el intervalo? Debe hacer eso para que el clic funcione ...

tv.setMovementMethod(LinkMovementMethod.getInstance());
Marc Attinasi
fuente
No funciona bien si tves del tipo EditText, es cierto que puede hacer clic en el intervalo pero no editarlo de la forma habitual.
FIG-GHD742
¡muchas gracias! ¡También es trabajo para mí! ¿Me puede explicar por qué sobre esta configuración?
alfo888_ibg
63
Por supuesto, necesito configurar lo que la documentación llama un "controlador de teclas de flecha" para que un controlador de clics funcione. ¡Tan obvio! (╯ ° □ °) ╯︵ ┻━┻
adamdport
Funciona, pero nunca sabré por qué ese no es el comportamiento predeterminado.
EpicPandaForce
Y Google se olvidó de mencionar que llamar setMovementMethod hace que el "ellipsize" no trabajo ... Así que parece que el enfoque correcto es aplicar manualmente una TouchListener y tomar desde allí ...
Slott
4

Después de una prueba y error, la secuencia de configuración tv.setMovementMethod(LinkMovementMethod.getInstance());sí importa.

Aquí está mi código completo

String stringTerms = getString(R.string.sign_up_terms);
Spannable spannable = new SpannableString(stringTerms);
int indexTermsStart = stringTerms.indexOf("Terms");
int indexTermsEnd = indexTermsStart + 18;
spannable.setSpan(new UnderlineSpan(), indexTermsStart, indexTermsEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan(new ForegroundColorSpan(getColor(R.color.theme)), indexTermsStart, indexTermsEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan(new ClickableSpan() {
    @Override
    public void onClick(View widget) {
        Log.d(TAG, "TODO onClick.. Terms and Condition");
    }
}, indexTermsStart, indexTermsEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

int indexPolicyStart = stringTerms.indexOf("Privacy");
int indexPolicyEnd = indexPolicyStart + 14;
spannable.setSpan(new UnderlineSpan(), indexPolicyStart, indexPolicyEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan(new ForegroundColorSpan(getColor(R.color.theme)), indexPolicyStart, indexPolicyEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
spannable.setSpan(new ClickableSpan() {
    @Override
    public void onClick(View widget) {
        Log.d(TAG, "TODO onClick.. Privacy Policy");
    }
}, indexPolicyStart, indexPolicyEnd, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);

TextView textViewTerms = (TextView) findViewById(R.id.sign_up_terms_text);
textViewTerms.setText(spannable);
textViewTerms.setClickable(true);
textViewTerms.setMovementMethod(LinkMovementMethod.getInstance());
Twelvester
fuente
4

Función util de Kotlin:

fun setClickable(textView: TextView, subString: String, handler: () -> Unit, drawUnderline: Boolean = false) {
    val text = textView.text
    val start = text.indexOf(subString)
    val end = start + subString.length

    val span = SpannableString(text)
    span.setSpan(ClickHandler(handler, drawUnderline), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)

    textView.linksClickable = true
    textView.isClickable = true
    textView.movementMethod = LinkMovementMethod.getInstance()

    textView.text = span
}

class ClickHandler(
        private val handler: () -> Unit,
        private val drawUnderline: Boolean
) : ClickableSpan() {
    override fun onClick(widget: View?) {
        handler()
    }

    override fun updateDrawState(ds: TextPaint?) {
        if (drawUnderline) {
            super.updateDrawState(ds)
        } else {
            ds?.isUnderlineText = false
        }
    }
}

Uso:

Utils.setClickable(textView, subString, {handleClick()})
once
fuente
1

Enfoque directo en Kotlin

  val  textHeadingSpannable = SpannableString(resources.getString(R.string.travel_agent))


           val clickSpan = object : ClickableSpan(){
               override fun onClick(widget: View) {

                // Handel your click
               }
           }
            textHeadingSpannable.setSpan(clickSpan,104,136,Spannable.SPAN_INCLUSIVE_EXCLUSIVE)

            tv_contact_us_inquire_travel_agent.movementMethod = LinkMovementMethod.getInstance()
            tv_contact_us_inquire_travel_agent.text = textHeadingSpannable
mughil
fuente