Questions tagged [parse-android-sdk]

The Parse Android SDK allows you to store data, manage users, send push notifications, track analytics, and more in just a few lines of code.

Parse Platform Android SDK

The Parse Android SDK allows you to store data, manage users, send push notifications, track analytics, and more in just a few lines of code.

Contribute

132 questions
0
votes
1 answer

Unable to query using a pointer using Android SDK

I am trying to run a query using com.parse:parse-android:1.13.0 version of the parse android SDK. I am creating a query on the local storage and using ParseQuery$whereMatchesQuery() method to match a column storing pointer to another class in my…
Swapnil
  • 1,870
  • 2
  • 23
  • 48
0
votes
1 answer

Android parse: Get strings from parsequeryadapter and store them into an ArrayList

I have a ParseQueryAdapter class, and my items are being retrieved successfully. However, if I have this for loop to view the objects (strings): for (int i =0;i
Ali Bdeir
  • 4,151
  • 10
  • 57
  • 117
0
votes
1 answer

Radio Button parse android studio

I'm making a register act (java) in my android studio app and I have a radio group for gender. I'm having trouble with the app crashing when i click the radio buttons to select gender. Im not sure if my code is right for getting the info to store…
user4625928
0
votes
2 answers

Displaying some query records in random order (Parse.com)

Okay so the following is my ParseQuery. How can I display most but not all of the records in random order using Collections.shuffle() in this context? For example, I have a specific record that I want always to display at the top of the list but I…
0
votes
3 answers

query.orderByRandom with Parse.com? - Displaying records in random order

I understand that you can do the following... query.orderByAscending("rowValue"); query.orderByDescending("rowValue"); But what if you actually want your data to come out in random order every time your activity is opened? How might this be…
0
votes
1 answer

Parse Android query for objects created within month

I wanted to query object within December but it return with Jan-Nov object. This is my query. Calendar calendar = Calendar.getInstance(); calendar.set(Calendar.DAY_OF_MONTH, 1); calendar.set(Calendar.MONTH, 0); Date date =…
0
votes
1 answer

How to fetch more than 1000 records in parse?

Iam trying to query the parse using javascript.As we have limit to fetch 1000 records per query.What is the best alternative to fetch more than 1000 records in parse.
wsun31
  • 91
  • 1
  • 11
0
votes
1 answer

Parse for Android: Local Datastore and ParseQueryAdapter incompatible?

I can't seem to get the local datastore work together with the ParseQueryAdapter. Even if I try to run the official test app OfflineTodos at https://github.com/ParsePlatform/OfflineTodos. Anyone else with this problem who was able to solve it? This…
0
votes
1 answer

Can't retrieve data from ParseRelation on Android

I have been working this issue for almost a month and can't find an answer. I have a ParseRelation called "shulMinyans" that I saved in a ParseObject named "Shul". I checked on the web that the ParseRelation saved properly and it saved fine. When…
Rich G
  • 36
  • 5
0
votes
1 answer

ParseQuery findInBackground not calling completion handler in Android

I'm trying to query a very simple class on my Parse app: public static void refreshNotifications(){ ParseQuery query = new ParseQuery("Notification"); query.orderByDescending("createdAt"); query.findInBackground(new FindCallback() { …
Can Poyrazoğlu
  • 33,241
  • 48
  • 191
  • 389
0
votes
1 answer

ParseQueryAdapter on GitHub?

Now that the Parse Android SDK is Open Source I went on there to find ParseQueryAdapter but couldn't find it in the project. Can anyone find it out there? Or are they not supporting it anymore? I would like to contribute to it.
Ero
  • 491
  • 1
  • 3
  • 15
0
votes
1 answer

Android - Delay in getting value from Parse Query

Hi I am building a chat application using Parse and Firebase, User details are maintained in Parse and the chat is working on Firebase. In that every time user start to chat with someone it has to go to Parse "Recent" - class and it has to check…
Encipherer
  • 411
  • 7
  • 23
0
votes
1 answer

Calling a parse function asynchronously

I have to fetch some data from the parse cloud. I'm using the parse sdk for android. How do I call the method findInBackground asynchronously in my activity? Essentially, where do I place this piece of code in my Activity? Below is my…
0
votes
1 answer

Not able to fetch data from parse.com

I am using the Parse SDK for Android. I am not able to retrieve the data I stored in the cloud. I stored it manually using the Parse dashboard by creating a class called "Average" and creating a few rows. One of the columns is "squarefeet". I want…
0
votes
1 answer

startActivity not working in push handler

I am trying to start a new activity when a particular type of push notification is tapped. I've extended ParsePushBroadcastReceiver class (I'm using Parse) and overridden onPushOpen method. When I tap on the push, the following code does get…
1 2 3
8
9