Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to disable the highlighting of objects in a GridView in Android 2.2. I did find another article saying that I should set the selector to a transparent ColorDrawable, but the views in my GridView are still dimmed when I select them. I'm just using the GridView to display static objects (right now it's text, but I plan on switching it to simple images). None of these objects will be selected. Would it be better to just use a basic view and draw my images manually with quartz?

Thank you for the help!

share|improve this question

3 Answers

up vote 7 down vote accepted

Ok, it looks like I found the answer.

In the definition of your Adapter for the GridView, you will have to override the following methods:

public boolean areAllItemsEnabled()
{
    return false;
}

public boolean isEnabled(int position)
{
    return false;
}

This will cause all of the items in your grid to be non-selectable, but it will get rid of the highlight completely.

share|improve this answer
1  
If you need childs to be focusable try android:descendantFocusability="afterDescendants" – Evelio Tarazona Jan 30 '11 at 17:46
thanks a lot here, if you have custom objects in your list (views..) and overwrite their onclicklistener, you can select them :=) perfect :) – cV2 Dec 19 '11 at 16:41

For keeping the items clickable you should use below attr. in your GridView xml:

android:listSelector="#00000000"

See also: Android: Disable highlighting in GridView

share|improve this answer
1  
I think this should be the accepted answer... – Radu Apr 19 at 9:26

Just Set v.setOnClickListener(null);

share|improve this answer
This is in your Adapter.getView method – jfleong Aug 30 '10 at 19:39
I still needed to be able to get click events for the GridView, but I'm sure that would work in other situations. – Kenny Aug 31 '10 at 12:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.