Are you using weight in your webview..there are errors if the webview has a layout_weight="1.0"
On Mon, Mar 2, 2009 at 8:44 PM, Derek <[email protected]> wrote: > > Anyone ? > Even simple links are not followed. > - Show quoted text - > > > On Mar 1, 9:08 pm, Derek <[email protected]> wrote: > > To get the login form, use: > > String url = "http://m.flickr.com/signin/"; > > > > On Mar 1, 9:03 pm, Derek <[email protected]> wrote: > > > > > Hi all, > > > > > I'm facing the following problem. I'm opening Flickr HTML login form > > > with default Android browser and everything works fine when I'm > > > logging (click "sign in" button in HTML form): > > > String url = "http://m.flickr.com/"; > > > Intent intent = new Intent(); > > > intent.setAction(Intent.ACTION_VIEW); > > > intent.setData(Uri.parse(url)); > > > startActivity(intent); > > > > > But "sign in" button does nothing when using the same in a WebView: > > > String url = "http://m.flickr.com/"; > > > WebView webview = (WebView) findViewById(R.id.flickr_authwebview); > > > webview.getSettings().setJavaScriptEnabled(true); > > > webview.getSettings().setJavaScriptCanOpenWindowsAutomatically(true); > > > webview.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE); > > > webview.getSettings().setLoadsImagesAutomatically(false); > > > webview.setClickable(true); > > > webview.loadUrl(url); > > > > > What could be the problem ? > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

