I am trying to handle the case where i need to refresh my view after an inapp language change has occurred
However, the method onConfigurationChange does not get called at all.
i put in my manifest the following flags:
android:configChanges="locale"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize|adjustPan"
public void onConfigurationChanged(android.content.res.Configuration newConfig) {
LogUtils.d("configuration has changed:%s",newConfig); => this line never runs
super.onConfigurationChanged(newConfig);
};
what do i do to make the onConfigurationChanged method run ?