Android -- Linkify and ListView
- by Ryan
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!!!