I want to act my tabs to have different windowSoftInputMode properties for each tab. How to access this property from java class when all handling of your tab
windowSoftInputMode
You can use the following code programmatically
android.view.inputmethod.InputMethodManager imm = (android.view.inputmethod.InputMethodManager) context .getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
Thanks Deepak