Fullscreen Web App for Android Fullscreen Web App for Android android android

Fullscreen Web App for Android


This worked for me on Chrome for Android.

Add this to the head tags:

<meta name="mobile-web-app-capable" content="yes">

Then in the chrome browser menu, Goto Add to Homepage. This Icon will now open your website up in fullscreen.


I use a mix of the HTML meta tag for iOS and a JavaScript solution.It takes away the address bar on iOS and android devices. It does not take out the bottom bar on iOS as this will only disappear when the user installs the web page as a HTML5 app on his home screen.

<meta name="apple-mobile-web-app-capable" content="yes" /><meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/><script type='text/javascript' charset='utf-8'>    // Hides mobile browser's address bar when page is done loading.      window.addEventListener('load', function(e) {        setTimeout(function() { window.scrollTo(0, 1); }, 1);      }, false);</script>

I use PHP in the backend to only render the JavaScript for mobile browser with the following mobile browser detection

if (preg_match('/iphone|ipod|android/',strtolower($_SERVER['HTTP_USER_AGENT'])))


I do not think you will find a global solution for that since not everybody uses the default android webbrowser (e.g. I prefer dolphin).

Facing that fact you will need to try every dirty javascript hack to force that behavior.

The only reason why this works for apple devices is the fact that apple is very restrictive about developing a custom browser and everybody sticks to the default app.