[android-developers] Re: webview - hide the address bar

2010-09-29 Thread dashman
webview = new WebView(this); setContentView(webview); have an activity with this in the onCreate method. is this not an webview - i see an address bar. On Sep 29, 2:17 pm, Mark Murphy wrote: > On Wed, Sep 29, 2010 at 2:13 PM, dashman wrote: > > how can i hide the address bar.

[android-developers] Re: webview - hide the address bar

2010-09-29 Thread dashman
after the setContentView, i do webview.loadUrl(url); that seems to be creating an instance of the native browser. i guess my question is - how do i set a url w/o forcing the native browser from opening. -- You received this message because you are subscribed to the Google Grou

Re: [android-developers] Re: webview - hide the address bar

2010-09-29 Thread Mark Murphy
On Wed, Sep 29, 2010 at 3:24 PM, dashman wrote: > >        webview = new WebView(this); >        setContentView(webview); > > have an activity with this in the onCreate method. > > is this not an webview - i see an address bar. That is not a WebView. Probably that is the Browser activity. Most l

Re: [android-developers] Re: webview - hide the address bar

2010-09-29 Thread Mark Murphy
On Wed, Sep 29, 2010 at 3:28 PM, dashman wrote: > after the setContentView, i do > >                 webview.loadUrl(url); > > that seems to be creating an instance of the native browser. > > i guess my question is - how do i set a url w/o forcing > the native browser from opening. As I wrote pre