【问题标题】:java.lang.IllegalStateException: Places must be initializedjava.lang.IllegalStateException:必须初始化地方
【发布时间】:2019-09-25 00:13:42
【问题描述】:

我使用的是旧的 Place SDK,它工作正常,但它会贬值,我会转移到新的 Place SDK。我得到了一些设备的崩溃报告。

崩溃报告:

Fatal Exception: java.lang.RuntimeException
Unable to start activity ComponentInfo{com.islamuna.ramadan/com.google.android.libraries.places.widget.AutocompleteActivity}: java.lang.IllegalStateException: Places must be initialized.

SDK 版本:

    implementation 'com.google.android.libraries.places:places:1.1.0'

即使我初始化地方示例代码:

Places.initialize(getApplicationContext(), "mykey", Locale.US);

autocompleteFragment = (AutocompleteSupportFragment)
                    getSupportFragmentManager().findFragmentById(R.id.place_autocomplete_fragment);
            autocompleteFragment.setPlaceFields(Arrays.asList(Place.Field.ID, Place.Field.NAME,Place.Field.LAT_LNG));
            autocompleteFragment.setText(Global.getStoredStringValue(getApplicationContext(), getString(R.string.KEY_CITY)));

            autocompleteFragment.setOnPlaceSelectedListener(new PlaceSelectionListener() {
                @Override
                public void onPlaceSelected(Place place) {
                    try {

                        }
                    } catch (Exception e) {
                    }

                }

                @Override
                public void onError(Status status) {
                    // TODO: Handle the error.

                }
            });

布局 XML

<fragment
                    android:id="@+id/place_autocomplete_fragment"
                    android:name="com.google.android.libraries.places.widget.AutocompleteSupportFragment"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:background="@drawable/border_filled" />

【问题讨论】:

  • 我也有同样的问题,你有什么解决办法吗?

标签: android google-places-api googleplacesautocomplete


【解决方案1】:

我也遇到了同样的问题,但我用这段代码解决了。

 dependencies {
      implementation 'com.google.android.libraries.places:places:2.0.0'
    }

第一步:在 OnCreate 方法中初始化 Places SDK,或者您可以在您的应用程序类中初始化它

if (!Places.isInitialized()) {
        Places.initialize(getApplicationContext(), getString(R.string.api_key), Locale.US);
    }

第二步:

 var fields=Arrays.asList(Place.Field.ID,Place.Field.NAME,Place.Field.LAT_LNG)
    var intent = Autocomplete.IntentBuilder(AutocompleteActivityMode.FULLSCREEN, fields).build(this)
     startActivityForResult(intent, PLACE_PICKER_REQUEST)

在活动结果中

   override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent) {
        super.onActivityResult(requestCode, resultCode, data)
        if (requestCode == PLACE_PICKER_REQUEST) {
            if (resultCode == Activity.RESULT_OK) {
                val place =Autocomplete.getPlaceFromIntent(data);

                lat = place.latLng?.latitude
                lng = place.latLng?.longitude
            }
            else if (resultCode == AutocompleteActivity.RESULT_ERROR) {
                // TODO: Handle the error.
                var status = Autocomplete.getStatusFromIntent(data)
                Log.i("address", status.getStatusMessage());
            }
        }
}

这是 Kotlin 示例,但您可以在 JAVA 中转换 此外,您可以参考此 URL 获取示例。 Google Places SDK Example

【讨论】:

    【解决方案2】:

    你必须启动谷歌地方库,下面是代码:

    Places.initialize(getApplicationContext(), getString(R.string.api_key));

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-09-14
      • 2013-01-03
      • 1970-01-01
      • 1970-01-01
      • 2016-07-28
      相关资源
      最近更新 更多