I want to create a simple dialog box (e.g. EditText and a button) when I press a key of the softkeyboard.

WindowManager.LayoutParams

link|improve this question
feedback

1 Answer

If you want to create a dialog, you don't have to use WindowManager at all. Android developers have an article on working with dialogs. TYPE_INPUT_METHOD_DIALOG, as the name suggests, is used for input methods (e.g. on-screen keyboards).

link|improve this answer
but the problem is that Dialog needs Activity to be extended. – Naung Nov 11 '11 at 9:48
"A dialog is always created and displayed as a part of an Activity. You should normally create dialogs from within your Activity's onCreateDialog(int) callback method. " developer.android.com/guide/topics/ui/dialogs.html – Naung Nov 11 '11 at 9:49
My service needs to extend InputMethodService. But If I want to create dialog, I need to extend Activity. – Naung Nov 11 '11 at 9:51
You're right, you can't create a dialog in a service. You should show a notification that a service needs attention, and when a user clicks it, you should bring up an activity with the needed dialog. Your initial question is somewhat confusing, the title has a question about WindowManager, the text has a question about creating a dialog, and now you're talking about user interaction in a service. – Malcolm Nov 11 '11 at 10:48
Thanks alot! now I am able to bring up an activity to accept the user input. Afterthat I want to pass the data back to the InputMethodService. Is it possible? I have used "intent" to pass the data. However, there were some difficulties when i tried to retrieve the "intent" and data in the InputMethodService. – Naung Nov 11 '11 at 16:07
feedback

Your Answer

 
or
required, but never shown

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