Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm stuck with a problem that concerns Android Motion Events. I have a 2D array of EditTexts. These EditTexts can contain only one letter. What I want to do is to be able to highlight them as I glide my finger over. So, I put an onTouchListener to each EditText that is not empty. Then I check if the motion event is ACTION_DOWN or ACTION_MOVE and write down the letter written in the concerned EditText. When I test i notice the following reaction: on ACTION_DOWN event everything is fine, but when i hover my finger over another EditText it still shows me the letter that was where I initially put my finger, and not the one that I have slided over to. I tried ACTION_HOVER_ENTER too, and it does nothing at all.

Here is my code:

public void composeAWord() {

    for (int i = 0; i < 5; i++) {
        for (int j = 0; j < 5; j++) {
            final EditText cell = cells[i][j];
            cell.setFocusable(false);

            if (cell.getText().length() != 0) {
                cell.setOnTouchListener(new OnTouchListener() {
                    public boolean onTouch(View v, MotionEvent event) {
                        if (event.getAction() == MotionEvent.ACTION_DOWN) {
                            Log.d("First letter", cell.getText().toString());
                        } else if (event.getAction() == MotionEvent.ACTION_MOVE) {
                            Log.d("Following letter", cell.getText().toString());
                        }
                        return false;
                    }
                });
            }
        }
    }
}

What am I doing wrong? What is the proper way to do this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.