i am new in using android programming and Parse.com.
I try to make a booking room apps with connect to Parse.com and i successful make the login.
i try to insert data to existing class in my Parse.com which name is "booking_details". In the login part, i use the Parse.com provided class(name as "User"). After that i create new class in for insert my booking time.
ParseQuery<ParseObject> query = ParseQuery.getQuery("booking_details");
when i try to use
parse.put();//will occur error, query can't be resolve to a type
what code i suppose to use? i see the Parse.com tutorial i still can't solve my problem. Appreciate to those who reading my question and helping.