[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-10-03 Thread CG
Sorry everyone; I didn't want to create any trouble here. Thanks anyway for the TextWatcher solution; it works fine. On Oct 2, 10:03 pm, Dianne Hackborn hack...@android.com wrote: On Fri, Oct 2, 2009 at 8:16 AM, Hannes Steiger hannes.stei...@googlemail.com wrote: ..seems as if some

[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-10-02 Thread Hannes Steiger
You can look at the java docs for the things in android.text that related to this, and ask questions you have from there. ..seems as if some people are too arrogant to give concrete help? Sorry, no offense ;) You can add a TextWatcher to your text field. In your case, this would look

[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-10-02 Thread Dianne Hackborn
On Fri, Oct 2, 2009 at 8:16 AM, Hannes Steiger hannes.stei...@googlemail.com wrote: ..seems as if some people are too arrogant to give concrete help? Sorry, no offense ;) Okay, I'll be sure not to give you any help in the future so you don't feel like I am being arrogant with you. No

[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-09-30 Thread CG
On Sep 26, 8:39 pm, Dianne Hackborn hack...@android.com wrote: IMEs perform their edits through the InputConnection interface.  Apps should generally watch for edits on the text view rather than catching key events. Thanks for the quick answer. This approach looks somewhat different to the

[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-09-30 Thread Dianne Hackborn
You can look at the java docs for the things in android.text that related to this, and ask questions you have from there. On Wed, Sep 30, 2009 at 6:43 AM, CG christian.gr...@gmail.com wrote: On Sep 26, 8:39 pm, Dianne Hackborn hack...@android.com wrote: IMEs perform their edits through the

[android-developers] Re: EditText.onKeyUp() doesn't catch all keys

2009-09-26 Thread Dianne Hackborn
IMEs perform their edits through the InputConnection interface. Apps should generally watch for edits on the text view rather than catching key events. On Sat, Sep 26, 2009 at 9:40 AM, CG christian.gr...@gmail.com wrote: Dear all, I'm writing a little dictionary application for Android 1.5,