我开始使用google places apis,我正在尝试获取设备的当前位置,这是我到目前为止所做的,但我无法弄清楚如何以及何时调用OnResult中的代码,因为其中的日志不会在logcat中打印:
Log.d("2^^check1111","nside : beforee");
try {
if (ActivityCompat.checkSelfPermission(getActivity().getApplicationContext(), android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
Log.d("2here now","yoyo0");
ActivityCompat.requestPermissions(getActivity(), new String[] {Manifest.permission.ACCESS_FINE_LOCATION}, 123);
}
Log.d("999here now","yoyo0");
PendingResult<PlaceLikelihoodBuffer> result = Places.PlaceDetectionApi.getCurrentPlace(mGoogleApiClient, null);
Log.d("888here now","after result");
result.setResultCallback(new ResultCallback<PlaceLikelihoodBuffer>() {
@Override
public void onResult(@NonNull PlaceLikelihoodBuffer likelyPlaces) {
// utils.showLog(TAG, "" + likelyPlaces.getCount());
/// Toast.makeText(getActivity().getApplicationContext(),"inside : onResult",Toast.LENGTH_LONG).show();
Log.d("2^^check","nside : onResul");
if (likelyPlaces.getCount() > 0) {
// Toast.makeText(getActivity().getApplicationContext(),"inside :likely >0",Toast.LENGTH_LONG).show();
Log.d("2^^check2","nside :likely >0");
PlaceLikelihood placeLikelihood = likelyPlaces.get(0);
// String content = "";
if (placeLikelihood != null && placeLikelihood.getPlace() != null && !TextUtils.isEmpty(placeLikelihood.getPlace().getName())) {
Log.d("2^^check3","nside : placelikelihood not nu");
// Toast.makeText(getActivity().getApplicationContext(),"inside : placelikelihood not null",Toast.LENGTH_LONG).show();
LatLng FromLatLng = placeLikelihood.getPlace().getLatLng();
Log.d("2^^check4","4444"+FromLatLng);
// Toast.makeText(getActivity().getApplicationContext(),"inside : latlng :"+FromLatLng,Toast.LENGTH_LONG).show();
newLatLng = FromLatLng;
FromLat = FromLatLng.latitude;
FromLng = FromLatLng.longitude;
}
} else {
Toast.makeText(getActivity(), "Auto Location can't fetch", Toast.LENGTH_SHORT).show();
}
likelyPlaces.release();
}
});
} catch (Exception e) {
e.printStackTrace();
}
}
答案 0 :(得分:1)
您需要注册API密钥,否则将无法显示结果。
在此注册:https://developers.google.com/places/android-api/signup
然后在AndroidManifest.xml
中,加入:
<application>
...
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="YOUR_API_KEY"/>
</application>
修改强>
所以我将你的代码添加到一个新项目中,看到onResult()
从未执行过。然而,经过一些改变后,我才能让它发挥作用。
首先,我将我的活动设为FragmentActivity
然后我像这样使用GoogleApiClient.Builder()
:
final GoogleApiClient mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Places.PLACE_DETECTION_API)
.addApi(Places.GEO_DATA_API)
.enableAutoManage(this, this)
.build();
执行此操作后,我看到onResult()
现在正在执行。
答案 1 :(得分:0)
您需要在SockThread
中设置ACCESS_FINE_LOCATION
权限。如果未设置,则位置数据将不可用,并且永远不会发布结果。