I have a dialog that contains a listview, this listview contains edittext boxes.
The problem is that when the edittext box is selected the softkeyboard will cover it up.
So far i have tried with limited success calling this in the dialogs initialisation:
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
What happens with this is whenever I select an edittext the dialog resizes exactly how I want but it also unfocuses the edittext at the same time. A similar outcome occurs when using SOFT_INPUT_ADJUST_PAN
resetting the pan when the edittext is reselected.