Android Listview row's ImageView OnClick delay -
similar this thread, i'm having delay in click response of view inside listview's row.
also, click listener fired when view outside listview gained focus.
my question is, there other way solve this, apart ditching listview altogether, suggested on link above?
i had come same issue , solved of others.
it seems used hash array save listview rows in order avoid inflate new view multiple times while implementing getview() method.
however using hash array make listener's status mess cause problem described.
so delete hash array , return row view in getview() method.