Bug 728005 - Crash when entering full screen mode on Android 2.3 [r=sriram]

This commit is contained in:
Matt Brubeck 2012-02-16 14:22:27 -08:00
parent fc238f5f93
commit fe86b1e34e

View File

@ -1648,7 +1648,8 @@ abstract public class GeckoApp
WindowManager.LayoutParams.FLAG_FULLSCREEN : 0,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
window.getDecorView().setSystemUiVisibility(fullscreen ? 1 : 0);
if (Build.VERSION.SDK_INT >= 11)
window.getDecorView().setSystemUiVisibility(fullscreen ? 1 : 0);
}
});
}