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?
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? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Executing this JavaScript on document load will scroll the browser down so that the address bar is off screen:
That's probably as good as you're going to get without writing a native Android app with a Edit: Note that this only works for the old default Android browser. It does not work with Chrome. |
|||||||||||
|
|
You don't need to use Javascript at all, the Android browser is WebKit based. Adding the following lines
in the |
|||||||||||||
|
|
You'll need to add your own Really, don't forget |
|||
|
|