Setonitemclicklistener Not Working For Gridview
Here's My Code the code, I'm not getting any response from gridview setOnClickListener. Please Help me out. setContentView(R.layout.myfav); gView = (GridView) findViewById(R.id.gri
Solution 1:
It could be that some items in your GridView are stealing focus. Try adding these attributes to any elements you have inside the grid:
android:focusable="false"
android:focusableInTouchMode="false"
Post a Comment for "Setonitemclicklistener Not Working For Gridview"