Created
April 5, 2012 20:44
-
-
Save topgenorth/2313979 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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