Implementation in Parse: Connect to Parse in Android
- Get the App ID and client key in the app's setting --> application key page
- Download the Parse SDK for Android
https://www.parse.com/downloads/android/Parse-Starter-Project/latest
and add it to the Android project
- In the project code (init part), use the App ID and client key to init the Parse SDK
- Call Parse SDK to manipulate the cloud data
- ParseObject
- getString
- getBoolean
- ...
- put("FIELD_NAME", value)
- saveInBackground
- ParseQuery<ParseObject>
- whereEqualTo("FIELD_NAME", value)
- findInBackground(new FindCallback<ParseObject>(){...})
No comments:
Post a Comment