As seen in the tablet version of gmail and google talk I am trying to show the current selection in a listview. I know this is not standard practice and should be avoided wh
What Gmail and similar apps use is the activated
state, with an appropriate row layout. See:
In a nutshell, you:
android.R.layout.simple_list_item_activated_1
)setChoiceMode(ListView.CHOICE_MODE_SINGLE)
on your ListView
setItemChecked()
on your ListView
to enable the "activated" state and have the persistent highlight