views:

47

answers:

2

I'm using a custom view to display items in a listview. For some reason every time the list is populated; the first item is shown as selected (ie; orange highlight). I've tried everything I can think about to solve it; any ideas?

A: 

I ended up having to request focus from the parent layout.

Bill
A: 

This would happen when you launch your Activity using the keyboard (you are thus in key mode, which causes the first focusable item to be focused.) How is that a bad thing?

Romain Guy