Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Add element to Array in parse.com Android

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 611
    Comment on it

    Here I am writing code to add an element to Parse Array.

    It is very simple to add values to parse array. We need to insert using add() or addUnique() instead of put() method.

    So for normal column, we use put() method of ParseObject and for array, we use add() method of ParseObject. Below is the code.

    1. ParseObject parseObject = new ParseObject("Challenge");
    2. parseObject.put("name", nameString);
    3.  
    4. parseObject.add("array", ParseUser.getCurrentUser());
    5.  
    6. parseObject.saveInBackground(new SaveCallback() {
    7. @Override
    8. public void done(ParseException e) {
    9.  
    10.  
    11. if (e == null) {
    12. System.out.println("Success");
    13. } else {
    14. System.out.println("Error : " + e.getMessage());
    15. }
    16. }
    17. });

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: