2

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.

1 Answer 1

1

There's plenty of tutorials on the parse.com's webpage. For eg: Docs should help you get started.

It is a 3rd party framework so you would have to refer to their official documentation to use their platform in the right manner.

It seems like parse.com uses a custom ParseObject: https://www.parse.com/docs/android_guide#objects-classes

Sign up to request clarification or add additional context in comments.

3 Comments

thanks. maybe i should have added i'm an amateur programmer. for example in their guide they show an example; 'code' 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"); 'code' i want to be able to use the data in my form fields to fill in the name, email etc and add a field (like they've done) but populate it with text based on a radio button check.
sorry, new stackoverflow user; 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");
Welcome to SO! Could you please update your question so everyone else can also understand what problem you're facing. You will have to be specific and describe the problem in detail. For eg: I am trying to load a phone number into a text field and here's the code snippet that does this. Refer the StackOverflow FAQs here: stackoverflow.com/faq

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.