[android-developers] WebView takes up entire screen, I need it to fit in the remaining space of the layout.

2011-09-13 Thread MCON Dev
Hello All, I am trying to use Webview in a relative layout with a progress bar and some buttons. But as soon as I run webview.loadUrl(my path), the webview takes over the entire space. I need the webview to fit in the remaining space of my layout. Please help. code ?xml version=1.0

Re: [android-developers] WebView takes up entire screen, I need it to fit in the remaining space of the layout.

2011-09-13 Thread Mark Murphy
Try pressing the MENU button. If you see the options menu from the browser app, that's because you're in the browser app, and you are not looking at your WebView. That would be because the server issued a redirect, which you did not handle in shouldOverrideUrlLoading() of a WebViewClient. If,