I have a following problem. I have a GridView
inside LinearLayout
as image below. I want to detect click event when user click at empty space of GridView
, in the image, the location that I want is the red area and also inside the green area.
But I have following problems.
- If I add
onClickListener
forGridView
: error because Adapter cannot add click event. - If I add
onItemClickListener
forGridView
: I just can detect where exist items (in the image is the white box) - If I add
onClickListener
forLinearLayout
I just can detect click event on green area, not red area.
So how can I fix above problem.
@Edit: my layout looks like:
<LinearLayout>
<GridView
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
Thanks :)