( Window wnd )
| 220 | } |
| 221 | |
| 222 | public void applyFullscreen( Window wnd ) |
| 223 | { |
| 224 | if ( mFullscreen ) { |
| 225 | //mActivity.getWindow().requestFeature(Window.) |
| 226 | wnd.setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, |
| 227 | WindowManager.LayoutParams.FLAG_FULLSCREEN ); |
| 228 | } else { |
| 229 | wnd.setFlags(0, |
| 230 | WindowManager.LayoutParams.FLAG_FULLSCREEN ); |
| 231 | } |
| 232 | } |
| 233 | public void setFullscreen( boolean fullscreen ) |
| 234 | { |
| 235 | if ( mFullscreen!=fullscreen ) { |