Namespaces
Variants
Actions

How can I find out when the value in the TextField has been changed?

Jump to: navigation, search
Article Metadata

Code Example
Article
Created: arunjyothiskp (21 Nov 2007)
Last edited: hamishwillee (05 Jul 2012)


When working with TextField items, it is often useful to be automatically notified when the TextField content changes (e.g.: to implement an autocomplete field, or some sort of automated filter for a list of other Items).

Source code

You must use the ItemStateListener interface and register the listener to the form. The easiest way is to implement ItemStateListener on the form that contains your TextField and put your code into the itemStateChanged method.

   class MyClass extends Form implements ItemStateListener
{
public MyClass()
{
setItemStateListener(this);
}
 
public void itemStateChanged(Item item)
{
...
}
}

Another approach would be to create an anonymous class and register it with the form:

   public class MyClass extends MIDlet 
{
public void startApp()
{
Form form = new Form("My Test");
// an anonymous class
ItemStateListener listener = new ItemStateListener()
{
public void itemStateChanged(Item item)
{
// do something
}
};
 
// register for events
form.setItemStateListener(listener);
...
display.setCurrent(form);
}
}

Download

You can download a MIDlet showing the code presented in this article here: Media:TextFieldItemStateListenerMIDlet.zip

Related resources

This page was last modified on 5 July 2012, at 09:59.
112 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved