Android Comment obtenir la position d'une ligne dans ListView

View parentRow = (View) v.getParent();
ListView listView = (ListView) parentRow.getParent();
index = listView.getPositionForView(parentRow);
Jealous Jaguar