how i can stop the restarting or recalling of on create() on screen orientation ,i want to stop the recreation of activity on screen orientation. thanks in advance please te
Two ways for this:
Either you can set android:configChanges="keyboardHidden|orientation" in Manifest file to avoid recreation of activity.
Or Make the changes you want to apply on changing the orientation inside the overrided method
@Override
public void onConfigurationChanged(Configuration newConfig) {
// Perform the actions
super.onConfigurationChanged(newConfig);
}