PlaceAutocompleteFragment - значение NULL не может быть приведено к непустому типу (Kotlin) - PullRequest
0 голосов
/ 18 января 2019

Я пытаюсь добавить фрагмент автозаполнения в свой фрагмент, следуя официальной документации здесь

Я получаю ошибку kotlin.TypeCastException: null cannot be cast to non-null type com.google.android.gms.location.places.ui.PlaceAutocompleteFragment

Я понял, что PlaceAutocompleteFragment не может быть установлен в null, поэтому я попытался добавить оператор if в свой getAutoCompleteSearchResults(), чтобы проверить, если fragManager! = Null, но все же не повезло

AddLocationFragment.kt

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    getAutoCompleteSearchResults()
}

private fun getAutoCompleteSearchResults() {
        val autocompleteFragment =
            fragmentManager?.findFragmentById(R.id.place_autocomplete_fragment2) as PlaceAutocompleteFragment
        autocompleteFragment.setOnPlaceSelectedListener(object : PlaceSelectionListener {
            override fun onPlaceSelected(place: Place) {
                // TODO: Get info about the selected place.
                Log.i(AddLocationFragment.TAG, "Place: " + place.name)
            }

            override fun onError(status: Status) {
                Log.i(AddLocationFragment.TAG, "An error occurred: $status")
            }
        })
    }
}

XML для фрагмента:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@android:color/darker_gray"
        tools:context=".AddLocationFragment" tools:layout_editor_absoluteY="81dp">
    <fragment
            android:id="@+id/place_autocomplete_fragment2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:name="com.google.android.gms.location.places.ui.PlaceAutocompleteFragment"
            android:theme="@style/AppTheme"
            app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/etAddress"
            app:layout_constraintEnd_toEndOf="parent"/>

</android.support.constraint.ConstraintLayout>

Ответы [ 2 ]

0 голосов
/ 18 января 2019

Я понял это. Так как я пытаюсь найти фрагмент внутри фрагмента, я должен сделать следующее:

val autocompleteFragment =
        activity!!.fragmentManager.findFragmentById(R.id.place_autocomplete_fragment2) as PlaceAutocompleteFragment

Нам нужно получить родительскую активность

0 голосов
/ 18 января 2019

На самом деле ошибка здесь:

val autocompleteFragment = fragmentManager?.findFragmentById(R.id.place_autocomplete_fragment2) as PlaceAutocompleteFragment

Вы применяете обнуляемый объект к ненулевому типу получателя.

Решение:

Сделайте ваше приведение обнуляемым , чтобы приведение никогда не закончилось неудачей, но предоставьте нулевой объект , как показано ниже.

val autocompleteFragment = fragmentManager?.findFragmentById(R.id.place_autocomplete_fragment2) as? PlaceAutocompleteFragment // Make casting of 'as' to nullable cast 'as?'

Итак, теперь ваш autocompleteFragment объект становится обнуляемым .

...