You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
When i have an object which like:
@ViewById
StickyListHeadersListView lvStickyList;
and then i set it ItemClick as below:
@ItemClick(R.id.lvStickyList)
void itemClick(int position) {
It will cause build error as
error: incompatible types: StickyListHeadersListView cannot be converted to AdapterView
((AdapterView ) this.lvStickyList).setOnItemClickListener(new OnItemClickListener() {
...
Maybe it is a side effect by #1785 Cast views to the required type when adding callbacks.
Any solution for this? Thx.