> 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 something like:

  EditText in = new EditText(this);
  in.addTextChangedListener(new TextWatcher() {
    public void onTextChanged(CharSequence cs, int s, int b, int c) {
      Log.i("Key:", cs.toString());
    }
    public void afterTextChanged(Editable editable) { }
    public void beforeTextChanged(CharSequence cs, int i, int j, int
k) { }
  });

Best,
Hannes


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to