I have an activity, which should react on keyboard opening, so in the manifest, it has an attribute
android:windowSoftInputMode="adjustResize"
Also, this activity can start a dialog, which has EditText. When it starts dialog, keyboard is shown, dialog (which is ok) and activity (not ok) are pushed up. It looks ugly and I want disable pushing of the activity up when dialog is visible.
Is there any beautiful way to solve this problem?
Currently I am changing softInputMode
at runtime, it works but it's annoying.
Also why the hell scrollview scroll not working with adjustPan?