Im not positive but I think if you use a WebView and turn of the zoom controls this is the behavior that you will get.
Yes, using a plain WebView in your activities layout will make it so there is no address bar by default. And add the no title bar theme to your activity by putting it in your manifest like this:
< activity android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
Edit: Oh, in that case
You can try this:
< meta content='width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;' name='viewport' />
< meta name="viewport" content="width=device-width" />
I found that in this answer. Fair warning though my knowledge of html is very limited. I don't really know that this will work.
- No the address bar is part of the (default)Browser Activities UI to my knowledge you can't really affect the way it displays itself from html(Note that there are other browsers available and it is up to them whether to, and how they display the address bar. Some that are out there have different ways of hiding it.) And no you won't be able to affect the behavior of the notification bar either.