Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialGil Maimon
945 PointsChallenge Task 3 out of 3 - Retrieving and Viewing Messages
My code:
import android.app.Activity;
import android.os.Bundle;
import com.parse.ParseQuery;
import com.parse.ParseObject;
import com.parse.FindCallback;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/* Add code below! */
ParseQuery query = new ParseQuery("DoctorWhoEpisodes");
query.whereEqualTo("writer","Neil Gaiman");
query.findInBackground(new FindCallback<String>(){});
}
}
My errors:
Note: ./MainActivity.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 Answer
Danial Goodwin
13,247 PointsI'm not going to provide an outright answer. But, something to consider when you are working with ParseQuery
and Parse callbacks is that they should always have the generic type specified. Doing this helps the IDE (and javac) analyze the code to help prevent you from making mistakes, like in the sample code in the origin post.
Rewatching the video explaining about the ParseQuery
and its "type" should help. Also, make sure that the "type" is the same for the query and callback. ;)
Danial Goodwin
13,247 PointsDanial Goodwin
13,247 PointsWere you able to find what was wrong?
EDIT: Task 3 of 3 allows the
FindCallback
to have an empty body.