I have a little Problem handling the headerView in my ListActivity and the listActivity in generel..
Whats works:
Adding a HeaderView to my ListActivitiy in Code
What doesnt work:
Adding a HeaderView in my ListActivitiy in a XML (is there a way for doing so?)
The trouble is, that if i add a headerView, the key-focus handling is not working the way as i want anymore. The items in my listView are not "orange" anymore when being selected - Therefore i think i should implement something like this for my headerView:
Using xml Syntax Highlighting
- android:nextFocusDown="@+id/mainlistView"
- android:nextFocusUp="@+id/mainlistView"
- android:nextFocusLeft="@+id/mainlistView"
- android:nextFocusRight="@+id/mainlistView"
Parsed in 0.000 seconds, using GeSHi 1.0.8.4
but i cant do this, because i dont know how i have to name the headerView element in my listView Layout xml.
any suggestions?!
hence:
if i am using the keys, the listViews are NOT orange on focus when using my headerView
if i am using the keys, the listViews ARE orange on focus when using NO headerView
if i am using the mouse, everything is "orange" when being selected..

