manifest:
<activity
android:windowSoftInputMode="stateUnspecified|adjustResize"
android:name="com.sample.MainActivity"
android:screenOrientation="sensorLandscape"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
While the onConfigurationChanged never called when I show or hide keyboard, rotate screen.
Who knows why?