Android Butterknife strange behaviour -


i'm using butterknife library views injections in android app. successfuly binded button:

@bind(r.id.btn_enter) button enterbutton; 

i can see on screen , interact with. onclick injection doesn't work:

@onclick(r.id.btn_enter)     public void lol() {         log.d(tag, "clicked!");         toast.maketext(this, "lol!", toast.length_long).show();     } 

i checked possible solutions , no result. app running under debug configuration, proguard not reason.

problem solved; forgot delete old call setonclicklistener(). sorry useless question.


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -