diff --git a/test/assets/www/fullscreen/index.html b/test/assets/www/fullscreen/index.html index ab910acc..8fa24dad 100755 --- a/test/assets/www/fullscreen/index.html +++ b/test/assets/www/fullscreen/index.html @@ -35,7 +35,8 @@ , Color Depth:
- The app should take over the entire screen. The top Android status bar should not be shown.
+ The app should take over the entire screen.
+ The top Android status bar should not be shown.
diff --git a/test/src/org/apache/cordova/test/fullscreen.java b/test/src/org/apache/cordova/test/fullscreen.java index 8b146247..7fcd79b9 100755 --- a/test/src/org/apache/cordova/test/fullscreen.java +++ b/test/src/org/apache/cordova/test/fullscreen.java @@ -19,10 +19,7 @@ package org.apache.cordova.test; import android.os.Bundle; -import android.webkit.WebView; - import org.apache.cordova.*; -import org.apache.cordova.api.LOG; public class fullscreen extends DroidGap { @Override @@ -30,6 +27,9 @@ public class fullscreen extends DroidGap { super.onCreate(savedInstanceState); // Properties must be set before init() is called, since some are processed during init(). + + // fullscreen can also be set in cordova.xml. For example, + // super.setBooleanProperty("fullscreen", true); super.init();