I have an app made for the 1.6 version, and it works great till 2.2. Now I am making some updates and realize that onKeyListener won't work on 2.3, on previous versions is good. Check this
etValue.setOnKeyListener(new View.OnKeyListener() {
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
return false;
}
});
etValue is EditText.