Skip to content

Instantly share code, notes, and snippets.

@dmitry-osin
Created November 24, 2015 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dmitry-osin/6d813dc9beb65499d21e to your computer and use it in GitHub Desktop.
Save dmitry-osin/6d813dc9beb65499d21e to your computer and use it in GitHub Desktop.
listView.ItemClick += ListViewOnItemClick;
}
private void ListViewOnItemClick(object sender, AdapterView.ItemClickEventArgs itemClickEventArgs)
{
_selectedStation = _list[itemClickEventArgs.Position];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment