I have an application that works in full screen using:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
Because of this, the layout android:windowSoftInputMode="adjustResize"does not work correctly, i.e. It does not resize.
Is there a way to overcome the problem?
source
share