Skip to content

Instantly share code, notes, and snippets.

@topgenorth
Created April 5, 2012 20:44
Show Gist options
  • Save topgenorth/2313979 to your computer and use it in GitHub Desktop.
Save topgenorth/2313979 to your computer and use it in GitHub Desktop.
// For Android 2.3, we have to do this:
ListView.ChoiceMode = (int) ChoiceMode.Single; // ListChoice mode is an Int32
ShowDetails(_currentPlayId);
// For Android 3.1, we have to do this:
ListView.ChoiceMode = ChoiceMode.Single; // ListChoice mode has changed to Android.Widget.ChoiceMode
ShowDetails(_currentPlayId);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment