I have a ListView and want to get the long-click events on the ListView itself, not on the individual items in the ListView. I believe it should be as straight forward as just called ListView.setOnLongClickListener(View.OnLongClickListener). However, for me, it seems to do nothing at all. I'm just wondering if anyone else has the same issue with all ListViews or it just me and my implementation of the ListView made this not work.
I referred to this answer and tried using ListView.setLongClickable(true) but it still didn't work.