I've chosen to use Parse as the backend for my app. Unfortunately there aren't many tutorials and only one for Android.
Does the Parse framework use JSON? If so I can learn from reading those tutorials.
I'm trying to take data from a form (including a radio button) and have it input into the database. The tutorial I've found in the Parse Android user signup guide is:
ParseUser user = new ParseUser();
user.setUsername("my name");
user.setPassword("my pass");
user.setEmail("[email protected]");
// other fields can be set just like with
ParseObject user.put("phone", "650-253-0000");
I want to add the radio button input as text in a field like the last line in the code snippet.