My question is wether in Android you can have a selector item have precedence over another. I'm having the problem that the last item is being selected over the second item. In my code I use a listView and in both onItemClick and LongItemClick I have coded view.setHovered(true); which works only when the view is not activated. If it's activated @color/black is used instead of @color/white. Thanks in advance!
Edit1: Maybe this is the problem: Does it matter in which order v.setActivated / v.setHovered is called? Edit2: I've put all v.setHovered(true) calls after v.setActivated(true) calls but it still chooses @color/black.