How To Detect When The Device Switch From Portrait To Landscape Mode?
I have an app which shows fullscreen bitmaps in an activity. In order to provide fast loading time, I load them in the memory. But when the screen changes orientation, I would like
Solution 1:
See the official documentation http://developer.android.com/guide/topics/resources/runtime-changes.html
Changing it will actually create a new view and onCreate will be called again.
Furthermore you can check it via
@OverridepublicvoidonConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screenif (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
} elseif (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
}
}
Solution 2:
You can check the onSavedInstanceState
from your onCreate
method, if it is not null means this is configuration change.
Solution 3:
Another approach is using OrientationEventListener.
It can be used like this:
OrientationEventListenermOrientationEventListener=newOrientationEventListener(
this, SensorManager.SENSOR_DELAY_NORMAL) {
@OverridepublicvoidonOrientationChanged(int orientation) {
//checking if device was rotatedif (orientationPortrait != isPortrait(orientation)) {
orientationPortrait = !orientationPortrait;
Log.d(TAG, "Device was rotated!");
}
}
};
To check orientation:
privatebooleanisPortrait(int orientation) {
return (orientation >= (360 - 90) && orientation <= 360) || (orientation >= 0 && orientation <= 90);
}
And don't forget to enable and disable listener:
if (mOrientationEventListener != null) {
mOrientationEventListener.enable();
}
if (mOrientationEventListener != null) {
mOrientationEventListener.disable();
}
Solution 4:
Usually Orientation change calls OnCreate()
unless you have done something to make it do otherwise.
You can put the logic there.
Post a Comment for "How To Detect When The Device Switch From Portrait To Landscape Mode?"