I am aware that the android:windowSoftInputMode manifest attribute can be set programmatically using the following method:
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Is there any way to get this value programmatically? I do not see a corresponding getter method.