I'm wondering how I can create a custom pop-up like the one in the screenshot below (borrowed from the Swype keyboard), where I can have a couple of buttons, which each commit a string to the currently "connected" TextView (via a InputConnection).

Please note: this is an InputMethodService and not an ordinary Activity. I already tried launching a separate Activity with Theme:Dialog. However, as soon as that one opens I lose my focus with the TextView and my keyboard disappears (and with that my InputConnection is gone).

Swype

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You can try using a PopupWindow. You'll have to do a bit of hacking to get it to do what you want and the only good documentation for it is the source.

link|improve this answer
Cool. Thanks for the hint. I'm already going through the Android's keyboard source code, so I'm quite used to that :-) – znq Aug 18 '10 at 17:51
feedback

Peace be upon those who follow the guidance,

solution :

  AlertDialog dialog;
    //add this to your code
           dialog = builder.create();
            Window window = dialog.getWindow(); 
            WindowManager.LayoutParams lp = window.getAttributes();
                lp.token = mInputView.getWindowToken();
                lp.type = WindowManager.LayoutParams.TYPE_APPLICATION_ATTACHED_DIALOG;
                window.setAttributes(lp);
                window.addFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
    //end addons
    alert.show();

good luck.

link|improve this answer
What is mInputView ? – Blundell Feb 23 '11 at 14:21
feedback

I was banging my head against this problem too and I finally figured it out. The above solutions are correct although as you pointed out they cannot be used from an InputMethodService because it is not an Activity. The trick is to create the PopupWindow in a subclass of KeyboardView. By using a negative Y position, the PopupWindow can appear above the keyboard like Swype.

Good luck, Barry

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.