Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know it's kinda stupid question, but I couldn't find an answer : I have started to learn making android application on an internet tutorial. But now I'm blocked, I have 2 EditText that I use to calculate something (it doesn't matter), my problem is that no text is written when I click any letter on my emulator. I found that the problem is really with this part of code :

private OnKeyListener modificationListener = new OnKeyListener() {
    @Override
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        // Set a defaut text somewhere else, on another EditText
        result.setText(defaut);
        return true;
    }
};

I guessed I was supposed to call the super fonction, but when I try it tells me it's an error : super.onKey(v, keyCode, event);

Thanks!

share|improve this question
Return false....it must solve it mostly. – user1424394 Jun 1 '12 at 21:00

1 Answer

up vote 2 down vote accepted

Try returning false instead of true.

If you return true your are consuming the event and so it is not there any more for other listeners to act on it.

share|improve this answer
perfect that was it!!! – castors33 Jun 1 '12 at 19:39
1  
Yes, that is the idea more or less. If you return true the event is not passed to other possible listeners waiting for it. In this case, the EditText never receives the key that was pressed. – Xavi Jun 1 '12 at 19:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.