List of utility methods to do View Orientation Change
void | loadOrientationEventListener(Context c) Sets up the orientation event listener if it does not exist. if (mOrientationEventListener != null) { mOrientationEventListener.disable(); return; mOrientationEventListener = new OrientationEventListener(c) { @Override public void onOrientationChanged(int orientation) { if (orientation == ORIENTATION_UNKNOWN) ... |