EditText in PopupWindow not showing keyboard even if setFocusable(true)
ha, .found the answer., just did
popWindow.setFocusable(true);
popWindow.update();
thanks for the support! credits from this topic Keyboard not shown when i click on edittextview in android?
This worked for me:
popWindow.setFocusable(true);
popWindow.update();