Hello,
whenever I use the syntax
aq.id(R.id.myButton).clicked(this, "onButtonClicked");
coupled with
private void onButtonClicked(View view) {
Log.d("TAB1", "click");
}
the action is never trigged and I get instead a message of
ViewRootImpl: ViewPostImeInputStage processPointer 0
on tap and and a message of
ViewRootImpl: ViewPostImeInputStage processPointer 1
on release.
This code used to work perfectly before, but now it doesn't anymore.
Any idea? Thank you,
P