how to make header of listview not to consume the touch event
问题 What I want I want the header of listView not to consume the touch event Problem I have a FrameLayout.In it, there are a mapview and a listview. The listview has a transparent header view in order to show more of the mapview. Now the header view response to the touch events, but I want dispatch these events to the mapview. How to do? I have tried headerView.setEnabled(false) headerView.setClickable(false) mListView.addHeaderView(headerView, null, false) All of them failed, any advice? 回答1: I