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);…