为什么Android Studio显示setupWithNavController不存在?

时间:2018-10-11 20:21:10

标签: android androidx

#N/A

当我运行应用程序时,代码很好,但是为什么它一直显示这样的编译错误?

我使用的底部导航位于NavigationUI.setupWithNavController(bottomNavigationView, navController)中,而参数中的底部导航为com.google.android.material:material。我知道他们是同一回事,但是为什么会抱怨呢?

enter image description here

4 个答案:

答案 0 :(得分:2)

有同样的问题。现在,它与所有不同的android软件包都非常混乱。 androidx,android-arch,android-support。它们全部以-rcX,alpha-X或beta-X处于某种奇怪的版本状态... 使用以下代码,我得到了相同的错误。 但是在告诉AndroidStudio文件->使缓存无效并重新启动后,它突然起作用了。

我也强烈推荐本教程:https://proandroiddev.com/android-jetpack-navigationui-a7c9f17c510e

进口:

implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0-alpha07"
implementation "android.arch.navigation:navigation-ui-ktx:1.0.0-alpha07"

MainActivity

import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.navigation.findNavController
import androidx.navigation.ui.NavigationUI
import com.google.android.material.bottomnavigation.BottomNavigationView
import net.onefivefour.android.ebtimetracker.R

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        NavigationUI.setupWithNavController(findViewById(R.id.navigation), findNavController(R.id.navHostFragment))
    }

    override fun onSupportNavigateUp() = findNavController(R.id.navHostFragment).navigateUp()
}

活动布局          

<fragment
    android:id="@+id/navHostFragment"
    android:name="androidx.navigation.fragment.NavHostFragment"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    app:defaultNavHost="true"
    app:layout_constraintBottom_toTopOf="@+id/navigation"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    app:navGraph="@navigation/nav_graph" />

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/navigation"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:background="?android:attr/windowBackground"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/nav_graph" />

</androidx.constraintlayout.widget.ConstraintLayout>

nav_graph.xml          

<activity
    android:id="@+id/mainActivity"
    android:name="net.onefivefour.android.ebtimetracker.ui.MainActivity"
    android:label="MainActivity"
    tools:layout="@layout/activity_main" />

<fragment
    android:id="@+id/quickEntryFragment"
    android:name="net.onefivefour.android.ebtimetracker.ui.quickentry.QuickEntryFragment"
    android:label="QuickEntryFragment"
    tools:layout="@layout/fragment_quick_entry" />
<fragment
    android:id="@+id/templatesFragment"
    android:name="net.onefivefour.android.ebtimetracker.ui.templates.TemplatesFragment"
    android:label="TemplatesFragment"
    tools:layout="@layout/fragment_templates" />
<fragment
    android:id="@+id/entriesFragment"
    android:name="net.onefivefour.android.ebtimetracker.ui.entries.EntriesFragment"
    android:label="EntriesFragment"
    tools:layout="@layout/fragment_entries" />

</navigation>

答案 1 :(得分:2)

只需重新启动Android Studio。皮棉有时会感到困惑。

答案 2 :(得分:1)

我在工具栏上遇到了同样的问题,因为我是从旧的支持库而不是新的 androidx 支持库导入的。因此,请检查您的导入语句。

答案 3 :(得分:0)

请确保您正确正确地应用了三个安装步骤

1-将依赖项添加到您的应用程序build.gradle

dependencies {
    def nav_version = "2.1.0-alpha02"

    implementation "androidx.navigation:navigation-fragment:$nav_version" // For Kotlin use navigation-fragment-ktx
    implementation "androidx.navigation:navigation-ui:$nav_version" // For Kotlin use navigation-ui-ktx
}

2-对于Safe args,在顶级build.gradle文件中添加以下类路径

buildscript {
    repositories {
        google()
    }
    dependencies {
        classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.1.0-alpha02"
    }
}

3-您还必须应用两个可用插件之一。

apply plugin: "androidx.navigation.safeargs" // or for Kotlin only: apply plugin: "androidx.navigation.safeargs.kotlin" 

我忘记在我的应用程序build.gradle中应用导航安全参数,这导致我收到此错误。

我希望这对您有所帮助。 :)

来源: https://developer.android.com/jetpack/androidx/releases/navigation#declaring_dependencies