MOVERIO Pro Developer's Guide (Rev.1.4)
26
3.2.
Full screen display function
The MOVERIO Pro BT-2000 is based on Android 4.0 Tablet UI. This specification does not
normally allow full display in applications in Android 4.0 Tablet UI; however, you can follow the
steps below to enable full display by specifying a unique flag in the app.
■ Executing full screen in applications
Execute the following process in onCreate() for each Activity.
Window win = getWindow();
WindowManager.LayoutParams winParams = win.getAttributes();
winParams.flags 0x80000000
win.setAttributes(winParams);
For apps with multiple Activities, execute the above process for each Activity.
■ Add an import definition
import android.view.Window;
import android.view.WindowManager;
Enable full screen
display
(hide status bar)
Disable full screen
display
(show status bar)
Summary of Contents for Moverio Pro BT-2000
Page 7: ...MOVERIO Pro Developer s Guide Rev 1 4 1 1 Introduction ...
Page 12: ...MOVERIO Pro Developer s Guide Rev 1 4 6 2 Developing Apps ...
Page 30: ...MOVERIO Pro Developer s Guide Rev 1 4 24 3 Display control ...
Page 39: ...MOVERIO Pro Developer s Guide Rev 1 4 33 4 UI control ...
Page 47: ...MOVERIO Pro Developer s Guide Rev 1 4 41 5 Voice commands ...
Page 70: ...MOVERIO Pro Developer s Guide Rev 1 4 64 6 Camera control ...
Page 119: ...MOVERIO Pro Developer s Guide Rev 1 4 113 7 Sensor control ...
Page 127: ...MOVERIO Pro Developer s Guide Rev 1 4 121 8 Bluetooth BLE ...
Page 184: ...MOVERIO Pro Developer s Guide Rev 1 4 178 9 Power control ...
Page 187: ...MOVERIO Pro Developer s Guide Rev 1 4 181 10 Self diagnostic function ...
Page 191: ...MOVERIO Pro Developer s Guide Rev 1 4 185 11 GPS Assist ...
Page 202: ...MOVERIO Pro Developer s Guide Rev 1 4 196 Memo ...