Неразрешенная ссылка.Ни один из следующих кандидатов не применим из-за несоответствия типа приемника - PullRequest
0 голосов
/ 16 ноября 2018

Я использую androidx navigation architecture вместе с Kotlin 1.2.71 в Android Studio 3.2.1. Мой фрагмент кода:

package com.dell.andnav.fragments

import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Button
import androidx.navigation.fragment.findNavController
import com.dell.andnav.R
import kotlinx.android.synthetic.main.fragment_welcome.*


/**
 * A simple [Fragment] subclass.
 * Use the [WelcomeFragment.newInstance] factory method to
 * create an instance of this fragment.
 *
 */
class WelcomeFragment : Fragment() {

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
                              savedInstanceState: Bundle?): View? {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_welcome, container, false)
    }

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        detailButton.setOnClickListener {
            findNavController().navigate(R.id.action_welcomeFragment_to_detailsFragment)
        }
    }

    companion object {
        @JvmStatic
        fun newInstance() = WelcomeFragment()
    }
}  

А код макета:

<?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:id="@+id/frameLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".fragments.WelcomeFragment">


    <Button
        android:id="@+id/detailButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/to_detail_fragment"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>  

Мой build.gradle:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'androidx.navigation.safeargs'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.dell.andnav"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        androidExtensions {
            experimental = true
        }
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    def nav_version = "1.0.0-alpha07"
    implementation fileTree(dir: 'libs', include: ['*.jar'])
//    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
//    implementation 'com.android.support:support-v4:28.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.multidex:multidex:2.0.0'
    implementation 'androidx.appcompat:appcompat:1.0.2'

    implementation "android.arch.navigation:navigation-fragment-ktx:$nav_version"
    implementation "android.arch.navigation:navigation-ui-ktx:$nav_version"

    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
repositories {
    mavenCentral()
}

Когда я пытаюсь запустить свой код, я получаю сообщение об ошибке ниже:

Неразрешенная ссылка. Ни один из следующих кандидатов не применим из-за несоответствия типов получателей: public val Activity.detailButton: Кнопка! определено в kotlinx.android.synthetic.main.fragment_welcome public val Dialog.detailButton: Кнопка! определено в kotlinx.android.synthetic.main.fragment_welcome public val android.app.Fragment.detailButton: Кнопка! определено в kotlinx.android.synthetic.main.fragment_welcome public val androidx.fragment.app.Fragment.detailButton: Кнопка! определено в kotlinx.android.synthetic.main.fragment_welcome public val LayoutContainer.detailButton: Кнопка! определено в kotlinx.android.synthetic.main.fragment_welcome

Как я могу устранить эту ошибку?

Ответы [ 3 ]

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

В моем случае эта функция привела к ошибке:

private fun showProgress(view: View? = null) {
    (view?.progressBar ?: progressBar)?.visibility = View.VISIBLE
}

Android Studio предложила макеты, которые содержали progressBar, и я выбрал одну.Но view?.progressBar продолжал быть красным.Затем я сократил заголовок:

private fun showProgress(view: View).

Только после этого КАК предлагал макеты.Тогда я снова написал: private fun showProgress(view: View? = null).

0 голосов
/ 20 июня 2019

У меня была эта проблема, и я понял, что основной причиной были play-services с версиями 17.x.x

Мое исправление

Изменить

google_android_gms_version

в

implementation "com.google.android.gms:play-services-location:$google_android_gms_version"
    implementation "com.google.android.gms:play-services-gcm:$google_android_gms_version"

с 17.x.x до 15.0.1 Причина в том, что игровые сервисы 17.x.x зависят от Androidx

Общий способ Выберите опцию Gradle на крайней правой панели, Зайдите в приложение -> помощь -> зависимости Поиск androidx на графике. Узнайте, в какой библиотеке это есть. Измените или измените ваш gradle соответственно.

Те, кто могут мигрировать на androidx, это хорошо. Если вам нужно сохранить его в appcompat, следуйте ответу.

0 голосов
/ 16 ноября 2018

Кнопка, к которой вы обращаетесь, находится внутри вашего укуса, но вы обращаетесь к ней напрямую.Вы должны получить к нему доступ через родительский вид, как мы делаем с java rootview.findViewById(), поэтому используйте

view.detailButton.setOnClickListener {
    findNavController().navigate(R.id.action_welcomeFragment_to_detailsFragment)
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...