我将以下活动布局与let noCompanyName2 ({ Name1 = n1; Name2 = _ }) = Company { Name1 = n1; Name2 = None }
和fragment
配合使用:
BottomNavigationView
在我的活动中,我正在尝试为此设置导航控制器,但出现以下错误:
无法解析方法'setupWithNavController(androidx.navigation.NavController)'
这是我尝试过的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<fragment
android:layout_width="match_parent"
android:layout_height="0dp"
android:id="@+id/fragment"
android:layout_weight="1"
android:name="androidx.navigation.fragment.NavHostFragment"
app:newGraph="@navigation/navigation_bottom"
app:defaultNavHost="true"/>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottom_navigation_view"
app:menu="@menu/bottom_navigation_menu"/>
</LinearLayout>
我的依赖项:
navController = Navigation.findNavController(this, R.id.fragment);
BottomNavigationView bnv = findViewById(R.id.bottom_navigation_view);
bnv.setupWithNavController(navController); //Error
NavigationUI.setupActionBarWithNavController(this, navController);
我该如何连接?谢谢!
答案 0 :(得分:1)
检查这两个属性是否在gradle.properties中启用
android.useAndroidX=true
android.enableJetifier=true
更新
并确认您也在使用这些库。
implementation 'androidx.core:core: 1.0.1'
implementation 'androidx.appcompat:appcompat:1.0.2
答案 1 :(得分:1)
语法bnv.setupWithNavController
使用Kotlin扩展方法-根据Declaring dependencies documentation中的注释,您必须使用Kotlin和-ktx
依赖项才能访问Kotlin扩展名:
implementation 'android.arch.navigation:navigation-fragment-ktx:1.0.0-rc02'
implementation 'android.arch.navigation:navigation-ui-ktx:1.0.0-rc02'
如果要编写Java代码,则需要直接使用NavigationUI方法:
NavigationUI.setupWithNavController(bnv, navController);
答案 2 :(得分:0)
这种类型的行(带有实现)可以添加到部分
dependencies {
implementation 'androidx.core:core: 1.0.1'
implementation 'androidx.appcompat:appcompat:1.0.2
}
在app / build.gradle中。 并且这种类型的行带有(android.useAndroidX = true和android.enableJetifier = true) 可以添加到gradle.properties
android.useAndroidX=true
android.enableJetifier=true
但是请在不存在之前进行检查:)