How to continue video play while orientation change in android

android

Solution

Add:

<activity
    android:name="...your_activity..."
    android:configChanges="screenSize|orientation|keyboardHidden"
/>

to the AndroidManifest file, to the Activity that handles video play back.

Problem

I used videoview for playing a video in android default player. When I change its orientation, it starts playing from beginning. How could I make it to continue from that point, where orientation changed ?

Original source