I have an EditText
with number input, a button and a ScrollView
one below the other.
Inside the ScrollView
I have a Linear Layout
with vertical orientation and inside the Layout
I have about 50 TextViews
each with id 1,2,3,4....
What I want is that when the user enters a number in EditText
and clicks the button,it should read which number is entered (say 28),then the ScrollView
should scroll Textview
with id 28 without disturbing the others.
I have no problem if I have to type the same code for each and every TextView even 500 times but it should be a working code like I mentioned above.
I have been trying to achieve this for a while without any success.Please Help!!!