java - Trying to query all users from the user table in Parse.com -
i trying print users have saved on parse database on screen. somehow doesn't work, can print data other tables expect users... think problem somewhere here, because when change "todo" user table doesn't work anymore...
mainadapter = new parsequeryadapter<parseobject>(this, "todo"); mainadapter.settextkey("title");
any suggestions? thanks!
the user class special (so couple of others) because it's built platform. name doesn't work because name private. can see _users
private name, shouldn't use - can't guarantee won't change. correct way query is:
parsequery<parseuser> query = parseuser.getquery();
Comments
Post a Comment