Back to project page android-google-places.
The source code is released under:
Copyright (c) 2012 Greg Marzouka Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Soft...
If you think the Android project android-google-places listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.gmarz.googleplaces.query; // www . j a v a2s. c o m public class TextSearchQuery extends SearchQuery { public TextSearchQuery(String query) { setQuery(query); } public void setQuery(String query) { mQueryBuilder.addParameter("query", query); } @Override public String getUrl() { return "https://maps.googleapis.com/maps/api/place/textsearch/json"; } }