• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps onkeylistener not working

I have an edit text which I want to perform some action when text is typed in it.

I have some code which looks like
EditText searchText = (EditText)findViewById(R.id.editText3);
searchText.setOnKeyListener(new View.OnKeyListener()
{
public boolean onKey(View view,int keyCode,KeyEvent ke)
{
contactView.clearChoices();
return false;
}
});

however nothing seems to happen when I type inside the edit text box.

Any ideas anyone?
 
Back
Top Bottom