I am have created an android application that incorporates a relativelayout within a scrollview, and had trouble making my links within textview clickable. To work around this I am using
TextView TextView = (TextView)findViewById(R.id.textview2);
TextView.setMovementMethod(LinkMovementMethod.getinstance());
So, I am aware that findViewById() will only ever return the first instance. What can I do if I were, say, to want textView2, textView4, and textView8 all to become links. I assume a for loop here will do the trick?
Given your above comment that you have hundreds of TextViews, you could try the following:
Assuming a layout of like this:
You could do the following: