Apparently there are no editboxes or anything which needs a keyboard on the webpage either.

and this dos'nt work either even on user interaction event.

public void onUserInteraction()
    {
        super.onUserInteraction();
        InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(webView.getWindowToken(), 0);

    }

This is the log from logcat.

http://pastebin.com/i5q0axk9

link|improve this question
can you show code? – Vineet Shukla Aug 5 '11 at 12:09
pastebin.com/3x9QMTm8 And this happens only on samsung galaxy device – user1338678 Aug 5 '11 at 12:25
feedback

2 Answers

In your AndroidManifest.xml

use android:configChanges="orientation|keyboardHidden"

e.g

<activity android:name=".YourActivity" android:label="@string/app_name" android:configChanges="orientation|keyboardHidden"></activity>

Worked for me, Hope helps you also.

link|improve this answer
it dint, i think samsung is doing something wierd, IME_ACTION_UNSPECIFIED AxT9SipMgr.setInputMode - from : 1, to : 1 – user1338678 Aug 5 '11 at 14:42
feedback

If your concern is how to open URL then you try this and it is the tested code:

Uri uri = Uri.parse(URL);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent); 
link|improve this answer
The issue is not opening the webview or anything related to it, its just that the keyboard pops up automatically which i dont want to – user1338678 Aug 5 '11 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.