Does anyone know how I can remove the address bar from the Android browser to better view my web app and make it look more like a native app?

link|improve this question

feedback

5 Answers

up vote 21 down vote accepted

You can do that with the next code

 if(navigator.userAgent.match(/Android/i)){
    window.scrollTo(0,1);
 }

I hope it helps you!

link|improve this answer
3  
Note that this only works if you have enough page content that requires the page to scroll. If you don't, then you should tack on a bunch of <br /> tags or use CSS to add more space on page height. This would be great in a jQuery function that detects viewport height and adds the necessary space to the page height. – Volomike Jan 10 '11 at 19:42
Agree with Volomike. I could only get my browser addr bar to disappear by using @meagar code below. – Mark Dec 31 '11 at 5:00
feedback

Here's the NON-jQuery solution that instantly removes the address bar without scrolling. Also, it works when you rotate the browser's orientation.

function hideAddressBar(){
  if(document.documentElement.scrollHeight<window.outerHeight/window.devicePixelRatio)
    document.documentElement.style.height=(window.outerHeight/window.devicePixelRatio)+'px';
  setTimeout(window.scrollTo(1,1),0);
}
window.addEventListener("load",function(){hideAddressBar();});
window.addEventListener("orientationchange",function(){hideAddressBar();});

It should work with the iPhone also, but I couldn't test this.

link|improve this answer
I think you meant to put the scrollTo() call in an anonymous function for setTimeout() to call? – jowo Apr 15 at 6:58
feedback

If you've loaded jQuery, you can see if the height of the content is greater than the viewport height. If not, then you can make it that height (or a little less). I ran the following code in WVGA800 mode in the Android emulator, and then ran it on my Samsung Galaxy Tab, and in both cases it hid the addressbar.

$(document).ready(function() {

  if (navigator.userAgent.match(/Android/i)) {
    window.scrollTo(0,0); // reset in case prev not scrolled  
    var nPageH = $(document).height();
    var nViewH = window.outerHeight;
    if (nViewH > nPageH) {
      nViewH -= 250;
      $('BODY').css('height',nViewH + 'px');
    }
    window.scrollTo(0,1);
  }

});
link|improve this answer
1  
Thanks, your solution works nicely on my Galaxy S. But, no solutions for Safari? On iphone 4, it doesn't seem to work. – HyoGi Sim Feb 16 '11 at 7:25
1  
I would suggest changing from matching on 'Android' to matching on 'Mobile'. This would then support iPhone and potentially other mobile platforms. – Dan Feb 22 '11 at 18:32
@meagar Many thanks for this bit of code. Works well on my Sony Ericsson Xperia Play (Android 2.3). However, when navigating back to a screen that has this code on it, the page will quickly dip down (wanting to display the browser addr bar) the (because of yr code) addr bar will quickly slide up. How can I stop this "jerky" action? Is it possible to detect if the browser addr bar is already hidden so I can bypass yr code in this circumstance? – Mark Dec 31 '11 at 4:59
feedback

Referring to Volomike's answer, I would suggest replacing the line

nViewH -= 250;

with

nViewH = nViewH / window.devicePixelRatio;

It works exactly as I check on a HTC Magic (PixelRatio = 1) and a Samsung Galaxy Tab 7" (PixelRatio = 1.5).

link|improve this answer
Note the case type on the nViewH variable name. The line should be: nViewH = nViewH / window.devicePixelRatio; – Rafe Jul 3 '11 at 15:04
I like this! Thanks! :) – Volomike Dec 6 '11 at 0:09
feedback

This works great for Android, thanks guys. For iOS you need the following meta tag, and the user needs to add a link to their homescreen:

<meta name="apple-mobile-web-app-capable" content="yes" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.