[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 wrote: > On Fri, Oct 2, 2009 at 8:16 AM, Hannes Steiger < > > hannes.stei...@googlemail.com> wrote: > > ..seems as if some people are too arr

[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 of

[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 somethi

[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 wrote: > > On Sep 26, 8:39 pm, Dianne Hackborn wrote: > > IMEs perform their edits through the InputConnection interface. Apps > should

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

2009-09-30 Thread CG
On Sep 26, 8:39 pm, Dianne Hackborn 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 Java Swing architectu

[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 wrote: > > Dear all, > > I'm writing a little dictionary application for Android 1.5, and I'd > like to cat