Doubt on how to transform an object from a gridView into non-clickable

0

Hello,

I have a gridView that I build with an adapter that inherits from BaseAdapter. I want in my activity, when I click on an item (I have 16 in total in mine), make other items clickable and vice versa.

Does anyone know a way to do this ???

    
asked by anonymous 24.06.2015 / 20:32

1 answer

0

The view used in the GridView is clickable if you set it, but you can control these attributes in your Adapter class that extends from BaseAdapter.

You can still define the events that will be used in your view.

Look at the example:

link

Remember to always check the documentation, there is a lot of useful information there. link

    
24.06.2015 / 21:39