I need your hellp for a simple problem, i tried to solve in various ways but no success. Need my ScrollView scroll to the last position, but he insists scroll for the penultimate displaying the penultimate item on the list, I tried the following ways and all exhibit the same behavior:
1 - myScrollView.pageScroll(view.FOCUS_DOWN);
2 - myScrollView.fullScroll(view.FOCUS_DOWN);
3 - myScrollView.scrollTo(0,myScrollView.getBottom());
4 - myScrollView.scrollTo(0,myScrollView.getBottom()+1);
5 - myScrollView.smoothScrollTo(0, myScrollView.getBottom());
6 - myScrollView.smoothScrollTo(0, myScrollView.getBottom()+1);
7 - myScrollView.setScrollY(myScrollView.getBottom());
8 - myScrollView.setScrollY(myScrollView.getBottom()+1);
9 - myScrollView.arrowScroll(view.FOCUS_DOWN);
I also tried to add a Bottom padding for ScrollView, tried to resize the ScrollView and the same problem always occur. Anyone know how I can fix?
Thank you!