I am currently making a comic app n for the pictures, i am usin a scrollview. Since there are many pictures, i want to create a Box where the picture's name is typed and it takes you to the picture in the contained activity.. How can i do so?
Asked
Active
Viewed 337 times
1 Answers
0
ScrollView sv = (ScrollView)findViewById(R.id.scrl);
sv.scrollTo(0, sv.getBottom());
or
sv.scrollTo(5, 10);

Shubham Baldava
- 121
- 5
-
what does it mean **which activity** ?? – Shubham Baldava Jun 11 '13 at 16:52