gpt4 book ai didi

android无法从地点选择器中选择位置

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:14:36 25 4
gpt4 key购买 nike

我无法从地点选择器中选择位置。

它会在选择地点时禁用select 按钮,但在搜索位置并选择时会启用select 按钮。

我正在使用播放服务版本

 com.google.android.gms:play-services-location:9.4.0 

com.google.android.gms:play-services:9.4.0

 btn_locationSend.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View view) {
PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
try {
startActivityForResult(builder.build(ChatThreadActivity.this),PLACE_PICKER_REQUEST);
} catch (GooglePlayServicesRepairableException e) {
e.printStackTrace();
} catch (GooglePlayServicesNotAvailableException e) {
e.printStackTrace();
}
}
});
}





@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
switch (requestCode) {
case PLACE_PICKER_REQUEST:
Place place = PlacePicker.getPlace(this,data);
LatLng location = place.getLatLng();
String toastMsg = String.format("Place: %s", place.getName());
} }

最佳答案

如果您的问题还没有解决。启用 Google Places API for Android在开发控制台中。

这是因为您未授予在 Google map 上使用“地点”的权限。只需转到链接并启用 Android 版 Google Places API

关于android无法从地点选择器中选择位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38930796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com