android Programming Glossary: sviewy
ScrollView .scrollTo not working? Saving ScrollView position on rotation http://stackoverflow.com/questions/3263259/scrollview-scrollto-not-working-saving-scrollview-position-on-rotation Bundle outState save whatever you need to persist outState.putInt sViewX sView.getScrollX outState.putInt sViewY sView.getScrollY super.onSaveInstanceState outState @Override public void onRestoreInstanceState Bundle savedInstanceState.. Bundle savedInstanceState super.onRestoreInstanceState savedInstanceState sViewX savedInstanceState.getInt sViewX sViewY savedInstanceState.getInt sViewY sView.scrollTo sViewX sViewY If I set a Toast with the values of sViewX and sViewY on the.. savedInstanceState sViewX savedInstanceState.getInt sViewX sViewY savedInstanceState.getInt sViewY sView.scrollTo sViewX sViewY If I set a Toast with the values of sViewX and sViewY on the Restore the values are kept and..
|