sethumadhavan / apv

Automatically exported from code.google.com/p/apv
GNU General Public License v3.0
0 stars 0 forks source link

android 4.2 landscape can't restore recent data #147

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
i open a pdf file.and scroll to a page 10 eg.
and exit apv.
reopen the last pdf file, it can not restore recent data. such as 
zoom,top,left.  

i find it,and solve it.
<activity android:name=".OpenFileActivity" android:label="@string/app_name"
            android:configChanges="orientation|keyboardHidden">
===>
<activity android:name=".OpenFileActivity" android:label="@string/app_name"
            android:configChanges="orientation|keyboardHidden|screenSize">
the screen orientation changed, Activity will reload,so ,lost any data.

Original issue reported on code.google.com by arc...@gmail.com on 12 Sep 2013 at 6:57