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
Post a Comment