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?
|
You can do that with the next code
I hope it helps you! |
|||||||
|
|
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. |
|||||||||||||||
|
|
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.
|
|||||||||||||
|
|
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). |
|||||||||
|
|
The problem with most of these is that the user can still scroll up and see the addressbar. To make a permanent solution, you need to add this as well.
|
|||
|
|
|
Here's an example that makes sure that the body has minimum height of the device screen height and also hides the scroll bar. It uses DOMSubtreeModified event, but makes the check only every 400ms, to avoid performance loss.
Tested on Android and iPhone. |
|||||
|
|
Finally I Try with this. Its worked for me..
and your entire main.xml(res/layout) look should like this:
don't go to add layouts. |
||||
|
|
|
The one below works for me every time.. This site also has a few other suggestions, but this no-nonsense, no-worry one is available in a github:gist and answers your question (pasted here for convenience):
As far as I can tell, the combination of extra height added to the page (which caused problems for you) and the scrollTo() statement make the address bar disappear. From the same site the 'simplest' solution to hiding the address bar is using the scrollTo() method:
This will hide the address bar until the user scrolls. This site places the same method inside a timeout function (the justification is not explained, but it claims the code doesn't work well without it):
|
|||
|
|
|
I found that if you add the command to unload, he keeps down the page, ie the page that move! Hope it works with you too!
Using a 7-inch tablet with android, www.kupsoft.com visit my website and check how it behaves page, I use this command in my portal. |
||||
|
