I am working on a game and would like to have the full screen to itself.
Did anyone found a way to make the app go full screen on Android Honeycomb preview emulator?
Lights out mode has changed in the full 3.0 SDK. You can now enter lights out mode as follows:
View v = findViewById(R.id.view_id); v.setSystemUiVisibility(View.STATUS_BAR_HIDDEN);
You can also set a listener on the view to be notified on changes to the system bar's visibility.
1.4m articles
1.4m replys
5 comments
57.0k users