我使用的是Android Studio最新版本和SDK版本23.0.0 当我按照此链接获取附近的地图应用程序时,没有任何反应,它只显示您的应用程序停止了。链接是
http://karnshah8890.blogspot.in/2013/03/google-places-api-tutorial.html
我认为我所遵循的很多链接都没有帮助创建附近的地方应用程序,任何人请帮助我。
答案 0 :(得分:1)
本教程基于Places API Web服务。
我们最近发布了Places API for Android,其中包括PlaceDetectionApi.getCurrentPlace()。
示例:
PendingResult<PlaceLikelihoodBuffer> result = Places.PlaceDetectionApi
.getCurrentPlace(mGoogleApiClient, null);
result.setResultCallback(new ResultCallback<PlaceLikelihoodBuffer>() {
@Override
public void onResult(PlaceLikelihoodBuffer likelyPlaces) {
for (PlaceLikelihood placeLikelihood : likelyPlaces) {
Log.i(TAG, String.format("Place '%s' has likelihood: %g",
placeLikelihood.getPlace().getName(),
placeLikelihood.getLikelihood()));
}
likelyPlaces.release();
}
});
您还需要在Google Developers Console中启用Places API for Android,并在AndroidManifest.xml中添加Android API密钥。请参阅setup instructions here。
我希望这有帮助!