Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 16th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Diable Orientation Change while recording Video
  2. @Override
  3. public void onConfigurationChanged(Configuration newConfig) {
  4.     if (!recordingAudio && !recordingVideo) {
  5.         super.onConfigurationChanged(newConfig);
  6.     } else {
  7.         setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
  8.     }
  9. }