Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I'm trying to use the Google Places API in my android app, but it keeps crashing. After testing out different things, I found out that it crashes when it tries to instantiate.

package com.fender.isittoolate;

import java.io.IOException;
import com.gmail.yuyang226.flickr.places.PlacesList;
import com.google.api.client.googleapis.GoogleHeaders;
import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpRequestFactory;
import com.google.api.client.http.HttpRequestInitializer;
import com.google.api.client.http.HttpResponseException;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.apache.ApacheHttpTransport;
import com.google.api.client.http.json.JsonHttpParser;
import com.google.api.client.json.jackson.JacksonFactory;
import com.google.api.client.http.javanet.NetHttpTransport;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationManager;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class IsItTooLateActivity extends Activity {
private final static String API_KEY = "key_here";
private final static String BASE_SEARCH_URL = "https://maps.googleapis.com/maps/api/place/search/json?";
private final NetHttpTransport transport = new NetHttpTransport();

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

final Button button = (Button) findViewById(R.id.resultButton);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
    LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
    double longitude = location.getLongitude();
    double latitude = location.getLatitude();
    GenericUrl url = new GenericUrl(BASE_SEARCH_URL);
    url.put("key", API_KEY);
    url.put("location", latitude + "," + longitude);
    url.put("sensor", "true");
    url.put("radius", "500");
}

public HttpRequestFactory createRequestFactory(final HttpTransport transport) {
    return transport.createRequestFactory(new HttpRequestInitializer() {
        public void initialize(HttpRequest request) {
            GoogleHeaders headers = new GoogleHeaders();
            headers.setApplicationName("Google-Places-DemoApp");
            request.setHeaders(headers);
            JsonHttpParser parser = new JsonHttpParser(null);
            // parser.setJsonFactory(new JacksonFactory());
            request.addParser(parser);
        }
    });
}
});

}
}

This is what I used. Anybody have any suggestions? The other demos I saw online weren't really helpful...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.