在以下代码中得到上述错误
MainActivity.get("statuses/public_timeline.json", null,
new JsonHttpResponseHandler() {
public void onSuccess(JSONArray timeline) {
// Pull out the first event on the public timeline
JSONObject firstEvent = timeline.get(0);
String tweetText = firstEvent.getString("text");
// Do something with the response
System.out.println(tweetText);
}
});
在上面的代码中,timeline.get(0) 得到错误。任何人都可以为此建议合适的解决方案,谢谢。