Skip to content Skip to sidebar Skip to footer

Phonegap Android App Reset To Main Screen Each Time While Orientation Change

I am creating the phonegap application for android platform but when i change the orientation it will reset and going back to the main screen each time.

Solution 1:

Add android:configChanges under activity tag not in application tag like :-

<application >
...
    <activity
       android:configChanges="orientation|screenSize|keyboardHidden|keyboard|locale" 
       android:name="com.example.myapp.MainActivity"
       android:label="@string/app_name">
    </activity>
... 
</application>

Post a Comment for "Phonegap Android App Reset To Main Screen Each Time While Orientation Change"