[android-beginners] Re: how to type in a webview

2009-11-03 Thread Indicator Veritatis
I'm a Facebook 'refusenik', so I am not in a position to be very helpful on Facebook specific issues. But concerning your other question, see http://developer.android.com/intl/fr/guide/developing/tools/emulator.html#controlling which lists two columns in a table: they are Emulated Device Key and

Re: [android-beginners] Re: how to type in a webview

2009-11-03 Thread Marton Kodok
I want my user to login to Facebook. (There is already a FacebookWebViewClient custom class that extends WebViewClient) I use this code: WebViewwebview; webview = (WebView) findViewById(R.id.facebookview); webview.getSettings().setJavaScriptEnabled(true);

[android-beginners] Re: how to type in a webview

2009-11-03 Thread Indicator Veritatis
Another point: as I review the API doc (reference tag) on WebView, I see that it does not itself support key events or data entry. Now I don't know exactly what you are trying to do, but it sounds like you really want to use a WebViewClient object, not a WebView. This does support both. On Oct

[android-beginners] Re: how to type in a webview

2009-11-01 Thread Indicator Veritatis
Please explain in more detail, why you can't do that. Is it because you never can get focus in the input field for the authorization credentials? Can you tell us what login page you are required to go to? On Oct 30, 1:28 am, Marton Kodok pentiu...@gmail.com wrote: Hello, I have a really small