Android -- Linkify and ListView
Posted
by Ryan
on Stack Overflow
See other posts from Stack Overflow
or by Ryan
Published on 2010-06-03T19:00:12Z
Indexed on
2010/06/03
19:04 UTC
Read the original article
Hit count: 1165
Is there any way to Linkify a specific TextView that is contained within a ListView? I tried using android:autoLink="all"
but that didn't work. I was getting an out of context error.
Important also to note: the ListView is my second view in the ViewFlipper.
I have also tried:
TextView infoText = (TextView) findViewById(R.id.rowText2);
Linkify.addLinks(infoText, Linkify.ALL);
Right after the adapter was bound to the ListView and the View was switched. No luck.
Any Ideas?
Thanks in advance!!!
© Stack Overflow or respective owner