i have an application with an imagebutton that has both an onclick and an onlongclick listener. However, when the button is long pressed, both of these listeners are executing. Any suggestions?

d1.setOnLongClickListener(new OnLongClickListener() {

        @Override
        public boolean onLongClick(View v) {
            selectMode = true;
            dockNum = 1;
            sd1.open();
            d1.cancelLongPress();
            return false;
        }

    });

...d1.setOnClickListener(this);

...case R.id.d1:
        if(d1s.equals("empty")) {
            selectMode = true;
            dockNum = 1;
            sd1.open();
        } else {
            Intent d1i = pm.getLaunchIntentForPackage(d1s);
            startActivity(d1i);
        }
    break;
link|improve this question
Can you should us the code your using to assign the onClick and onLongClick listeners? – Kurtis Nusbaum Oct 29 '11 at 17:25
ok i added the code – user1015747 Oct 29 '11 at 17:35
feedback

1 Answer

up vote 1 down vote accepted

I think your problem has to do with the fact that you're returning false in your onLongClick method. Try returning true instead (despite the fact that you're canceling the long click, returning true is just saying "I've handled this, no further action is required.").

link|improve this answer
it is now working perfectly. Thank you. – user1015747 Oct 29 '11 at 18:37
feedback

Your Answer

 
or
required, but never shown

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