Есть текст TextView вложенный в ScrollView. Как при повороте экрана сохранить то место, где остановился читать? По учебнику нужно использовать: protected void onRestoreInstanceState(Bundle saveInstanceState); protected void onSaveInstanceState(Bundle saveInstanceState); Но я не пойму, что нужно прописывать в этих методах.
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".old_unused.ActivityBox_1">
<LinearLayout
android:orientation="vertical"
style="@style/RelativeBox">
<TextView
android:id="@+id/Ranishni"
android:text="@string/This_1"
style="@style/Size.text">
</TextView>
</LinearLayout>
</ScrollView>