I found a solution:
InputMethodService ims; ... Dialog dialog = ims.getWindow(); Window window = dialog.getWindow();
or simply:
Window window = ims.getWindow().getWindow();
(This works with InputMethodService and is not necessarily applicable to other services.)
source share