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?
|
feedback
|
|
You can do that with the next code
I hope it helps you! | |||||||
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.
It should work with the iPhone also, but I couldn't test this. | ||||
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.
| |||||||||||
feedback
|
|
Referring to Volomike's answer, I would suggest replacing the line
with
It works exactly as I check on a HTC Magic (PixelRatio = 1) and a Samsung Galaxy Tab 7" (PixelRatio = 1.5). | |||||
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:
| |||
|
feedback
|