Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save taywils/5543754 to your computer and use it in GitHub Desktop.
Save taywils/5543754 to your computer and use it in GitHub Desktop.
public class HttpTestActivity extends Activity {
private String latitude;
private String longitude;
private String provider;
private final String APIKEY = //PLACE YOUR API_KEY HERE!
private final int radius = 2000;
private String type = "food";
private StringBuilder query = new StringBuilder();
private ArrayList<Place> places = new ArrayList<Place>();
private ListView listView;
MyLocation myLocation = new MyLocation();
MyLocation.LocationResult locationResult;
ProgressDialog progressDialog = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment