其他分享
首页 > 其他分享> > android-Google Place Picker小部件不起作用

android-Google Place Picker小部件不起作用

作者:互联网

根据This Official Post

我正在按照以下步骤将Place Picker UI对话框与Map集成在一起.

启动器代码

    PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder();
    startActivityForResult(builder.build(this), PLACE_PICKER_REQUEST);

内部onActivityResult()

    if (requestCode == PLACE_PICKER_REQUEST) {
        if (resultCode == RESULT_OK) {
            Place place = PlacePicker.getPlace(this, data);
            tvChooseLocation.setText(place.getName());
        }
    }

我已添加所有权限&清单文件中的API_KEY

问题是我无法从“位置选择器”对话框中选择位置.

Select button is disabled

默认情况下,“选择”按钮是禁用的.

解决方法:

我已经解决了这个问题,所以我不太清楚这些步骤中的哪一个可以解决

在console.developer.google.com中

我启用了Places API和Maps API,并从here下载json.

另外,从“凭据”页面获取API密钥.

在Android Studio中

在清单中,在< application>之间添加…< / application>

<meta-data android:name="com.google.android.geo.API_KEY" android:value="YOUR_KEY_FROM_CREDENTIAL_PAGE"/>

在onCreate()中添加此内容(尽管我不太确定是否需要这样做)

private GoogleApiClient mGoogleApiClient;
mGoogleApiClient = new GoogleApiClient
.Builder(this)
.addApi(Places.GEO_DATA_API)
.addApi(Places.PLACE_DETECTION_API)
.enableAutoManage(this, this)
.build();

其他所有内容均遵循here中的教程.此外,我在发行版中对其进行了测试.如果仍然存在相同的问题,请尝试发布一个.我无法在模拟器中找到位置,但是在手机中可以正常工作.

希望这可以对将来的任何人有所帮助.

标签:android-maps-v2,google-places-api,android
来源: https://codeday.me/bug/20191118/2026737.html