Possible Duplicate:
Removing address bar from browser (to view on Android)

I'm trying to run a web-based application in Android, and I want to hide the webpage address bar while running the application. Is that possible? How do I do it?

link|improve this question
1  
A better more detailed answer/explanation can be found here. stackoverflow.com/questions/4068559/… – worked Feb 26 '11 at 23:09
feedback

migrated from android.stackexchange.com Jan 21 '11 at 14:18

This question came from our site for enthusiasts and power users of the Android operating system.

closed as exact duplicate by Bo Persson, casperOne Jan 10 at 21:05

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

Executing this JavaScript on document load will scroll the browser down so that the address bar is off screen:

window.scrollTo(0, 1);

That's probably as good as you're going to get without writing a native Android app with a WebView to display your webapp in.

link|improve this answer
Works in Android 2, but not Android 4. – Jaffa The Cake Jan 17 at 16:43
Works fine for me in Android 4 (on my Galaxy Nexus). Are you using the default browser or some other browser? – mbaird Jan 17 at 16:56
feedback

You'll need to add your own WebView. Basic help here : http://developer.android.com/guide/tutorials/views/hello-webview.html

Really, don't forget shouldOverrideUrlLoading() which will redirect all your click in your webview instead of the default browser.

link|improve this answer
feedback

You don't need to use javascript at all. The Android browser is webkit based. Adding the following lines

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=1;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />

in the <head> portion of your page will give the desired result.

link|improve this answer
1  
Just wanted to add here the comment Stated by Ryan Wheale below: "you cannot rely on the "apple" tags suggested by @Fuzzy. While it may have worked at one time for some Android devices - it is not officially supported by Android OS." – anttir Sep 1 '11 at 6:40
I have yet to get any of Apple's tags to work correctly in a sane manner with Android.. Honestly, its a guessing game it seems. Please refrain from stating the obvious things we have already tried, and find ourselves here looking because they never worked in the first place. – jdrefahl Jan 20 at 22:33
@Fuzzy - The apple meta tags you suggested actually prevent the window-scroll from occurring. – AVProgrammer Jan 21 at 20:46
feedback