I am using Parse.com in my application when I use ParseQueryAdapter in fragment to retrieve data and pass to a spinner an error as
java.lang.IllegalArgumentE
I have solved the same problem just now, and you have two possible solutions:
a. Down the targetSdkVersion to 19
targetSdkVersion
b. (My prefered) Extend your parseadapter and @override the getViewTypeCount with this code:
@override
getViewTypeCount
@Override public int getViewTypeCount() { return 1; }
This works for me :)