Ok.. I must be overlooking something real simple here, but i think i\'m trying to do something fairly basic.. Simply retain the scrollbar position of a ScrollView on orienta
I figured it out.
Since I'm using setText to TextViews in my onCreate, calling .scrollTo won't work.
setText
onCreate
.scrollTo
So now I'm using the following:
sView.post(new Runnable() { @Override public void run() { sView.scrollTo(sViewX, sViewY); } });